Package: jsonpickle / 4.0.2+dfsg-2

Metadata

Package Version Patches format
jsonpickle 4.0.2+dfsg-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 disable unsupported sphinx extension.patch | (download)

docs/history.rst | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 disable-unsupported-sphinx-extension

Disable Sphinx extensions not available in Debian or requiring remote access.

test_multindex_dataframe_roundtrip 32bit.patch | (download)

tests/pandas_test.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 fix test_multindex_dataframe_roundtrip on 32-bit architectures

https://bugs.debian.org/1103146 reports that this test is failing on
Debian's i386 architecture, and
https://ci.debian.net/packages/j/jsonpickle/ shows that it has been
failing on all 32-bit architectures for some time.  The reason is buried
many levels deep, but it turns out that
`pandas.core.indexes.base.Index._with_infer` converts the index levels
to `np.int64` even if they were initially of a narrower integer type -
so it seems to make most sense to start them out as `np.int64` as well.