Your message dated Thu, 21 Jan 2021 12:18:59 +0000
with message-id <[email protected]>
and subject line Bug#980688: fixed in seaborn 0.11.1-1
has caused the Debian Bug report #980688,
regarding seaborn: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i
python{version} -p 3.9 returned exit code 13
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
980688: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=980688
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: seaborn
Version: 0.10.1-2
Severity: serious
Justification: FTBFS on amd64
Tags: bullseye sid ftbfs
Usertags: ftbfs-20210120 ftbfs-bullseye
Hi,
During a rebuild of all packages in sid, your package failed to build
on amd64.
Relevant part (hopefully):
> make[1]: Entering directory '/<<PKGBUILDDIR>>'
> xvfb-run --auto-servernum --server-num=20 dh_auto_test override_dh_auto_test
> I: pybuild base:232: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_seaborn/build;
> python3.9 -m pytest
> ============================= test session starts
> ==============================
> platform linux -- Python 3.9.1+, pytest-6.0.2, py-1.10.0, pluggy-0.13.0
> rootdir: /<<PKGBUILDDIR>>, configfile: pytest.ini
> collected 591 items
>
> seaborn/tests/test_algorithms.py ............ssssss [
> 3%]
> seaborn/tests/test_axisgrid.py ......................................... [
> 9%]
> ................................................. [
> 18%]
> seaborn/tests/test_categorical.py ...................................... [
> 24%]
> ........................................................................ [
> 36%]
> .................... [
> 40%]
> seaborn/tests/test_distributions.py ....s.ss..ss...... [
> 43%]
> seaborn/tests/test_matrix.py ........................................... [
> 50%]
> ss....................................... [
> 57%]
> seaborn/tests/test_miscplot.py .s [
> 57%]
> seaborn/tests/test_palettes.py .................................... [
> 63%]
> seaborn/tests/test_rcmod.py ...................s.s [
> 67%]
> seaborn/tests/test_regression.py ................ss.ss.........ssss..... [
> 74%]
> .........s.. [
> 76%]
> seaborn/tests/test_relational.py ....................................... [
> 82%]
> ........................................................ [
> 92%]
> seaborn/tests/test_utils.py ................................F.........ss [
> 99%]
> s
> [100%]
>
> =================================== FAILURES
> ===================================
> ________________________ test_locator_to_legend_entries
> ________________________
>
> def test_locator_to_legend_entries():
>
> locator = mpl.ticker.MaxNLocator(nbins=3)
> limits = (0.09, 0.4)
> levels, str_levels = utils.locator_to_legend_entries(
> locator, limits, float
> )
> assert str_levels == ["0.00", "0.15", "0.30", "0.45"]
>
> limits = (0.8, 0.9)
> levels, str_levels = utils.locator_to_legend_entries(
> locator, limits, float
> )
> assert str_levels == ["0.80", "0.84", "0.88", "0.92"]
>
> limits = (1, 6)
> levels, str_levels = utils.locator_to_legend_entries(locator, limits,
> int)
> assert str_levels == ["0", "2", "4", "6"]
>
> locator = mpl.ticker.LogLocator(numticks=3)
> limits = (5, 1425)
> levels, str_levels = utils.locator_to_legend_entries(locator, limits,
> int)
> if LooseVersion(mpl.__version__) >= "3.1":
> > assert str_levels == ['0', '1', '100', '10000', '1e+06']
> E AssertionError: assert ['0', '1', '1... '10000', ...] == ['0',
> '1', '1...000', '1e+06']
> E At index 2 diff: '10' != '100'
> E Left contains 2 more items, first extra item: '10000'
> E Use -v to get the full diff
>
> seaborn/tests/test_utils.py:395: AssertionError
> =============================== warnings summary
> ===============================
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_axisgrid.py::TestFacetGrid::test_set_ticklabels
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_seaborn/build/seaborn/axisgrid.py:936:
> UserWarning: FixedFormatter should only be used together with FixedLocator
> ax.set_yticklabels(labels, **kwargs)
>
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_axisgrid.py::TestFacetGrid::test_set_ticklabels
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_seaborn/build/seaborn/axisgrid.py:924:
> UserWarning: FixedFormatter should only be used together with FixedLocator
> ax.set_xticklabels(curr_labels, **kwargs)
>
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_axisgrid.py::TestFacetGrid::test_set_ticklabels
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_seaborn/build/seaborn/axisgrid.py:934:
> UserWarning: FixedFormatter should only be used together with FixedLocator
> ax.set_yticklabels(curr_labels, **kwargs)
>
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_categorical.py::TestCategoricalPlotter::test_1d_input_data
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_categorical.py:80:
> VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences
> (which is a list-or-tuple of lists-or-tuples-or ndarrays with different
> lengths or shapes) is deprecated. If you meant to do this, you must specify
> 'dtype=object' when creating the ndarray
> x_notreally_1d = np.array([self.x.ravel(),
>
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_categorical.py: 2
> warnings
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_regression.py: 1
> warning
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_relational.py: 12
> warnings
> /usr/lib/python3/dist-packages/numpy/core/_asarray.py:83:
> VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences
> (which is a list-or-tuple of lists-or-tuples-or ndarrays with different
> lengths or shapes) is deprecated. If you meant to do this, you must specify
> 'dtype=object' when creating the ndarray
> return array(a, dtype, copy=False, order=order)
>
> .pybuild/cpython3_3.9_seaborn/build/seaborn/tests/test_matrix.py::TestClustermap::test_row_col_colors_ignore_heatmap_kwargs
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_seaborn/build/seaborn/matrix.py:301:
> MatplotlibDeprecationWarning: Passing parameters norm and vmin/vmax
> simultaneously is deprecated since 3.3 and will become an error two minor
> releases later. Please pass vmin/vmax directly to the norm when creating it.
> mesh = ax.pcolormesh(self.plot_data, vmin=self.vmin, vmax=self.vmax,
>
> -- Docs: https://docs.pytest.org/en/stable/warnings.html
> =========================== short test summary info
> ============================
> FAILED seaborn/tests/test_utils.py::test_locator_to_legend_entries -
> Assertio...
> ====== 1 failed, 562 passed, 28 skipped, 20 warnings in 111.02s (0:01:51)
> ======
> E: pybuild pybuild:353: test: plugin distutils failed with: exit code=1: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_seaborn/build; python3.9 -m pytest
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.9
> returned exit code 13
The full build log is available from:
http://qa-logs.debian.net/2021/01/20/seaborn_0.10.1-2_unstable.log
A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
If you reassign this bug to another package, please marking it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects
If you fail to reproduce this, please provide a build log and diff it with me
so that we can identify if something relevant changed in the meantime.
About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.
--- End Message ---
--- Begin Message ---
Source: seaborn
Source-Version: 0.11.1-1
Done: Nilesh Patra <[email protected]>
We believe that the bug you reported is fixed in the latest version of
seaborn, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Nilesh Patra <[email protected]> (supplier of updated seaborn package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Thu, 21 Jan 2021 17:21:52 +0530
Source: seaborn
Architecture: source
Version: 0.11.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers
<[email protected]>
Changed-By: Nilesh Patra <[email protected]>
Closes: 980688
Changes:
seaborn (0.11.1-1) unstable; urgency=medium
.
* New upstream version 0.11.1
(Closes: #980688)
* Refresh patches
* Add myself to uploaders
* Declare compliance with policy 4.5.1
* Bump debhelper-compat version to 13
* Import warnings in test_axisgrid.py
Checksums-Sha1:
01b6e6878eb8b8ec6300d6f401568924715c9800 2270 seaborn_0.11.1-1.dsc
37982c5aae0616b038888025662b560ac135adcd 1678634 seaborn_0.11.1.orig.tar.gz
70be96f43052ecf35ded70ce86993aad3555af68 5764 seaborn_0.11.1-1.debian.tar.xz
88352b9359ca7b442770e1e969a20eb88fca1cd3 9562 seaborn_0.11.1-1_amd64.buildinfo
Checksums-Sha256:
e5c310b7f976206c6fd2e7ba918b30d31cd032c7af6cd992387f8b8e0a1987cd 2270
seaborn_0.11.1-1.dsc
fbc6d02111c14ed3e7cb312b7fd594229e6cb4ed18768557302336a31e042bcf 1678634
seaborn_0.11.1.orig.tar.gz
297198e222ec6d2d8460a89ea807c3105e56028fc78764c6030d3f043106aea1 5764
seaborn_0.11.1-1.debian.tar.xz
6322379585dcf3c2668fc0b803d712a61acdcdd99d43bfa47d0129293fef9a73 9562
seaborn_0.11.1-1_amd64.buildinfo
Files:
05ce25489f71f910c9042dd224260276 2270 python optional seaborn_0.11.1-1.dsc
6fd7c297d708044439bde6997c96402c 1678634 python optional
seaborn_0.11.1.orig.tar.gz
31811d33b903b0c45a95121511233029 5764 python optional
seaborn_0.11.1-1.debian.tar.xz
f8648a2952a6d2be112173c37b15a17f 9562 python optional
seaborn_0.11.1-1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCgAyFiEEPpmlJvXcwMu/HO6mALrnSzQzafEFAmAJbsUUHG5wYXRyYTk3
NEBnbWFpbC5jb20ACgkQALrnSzQzafF3Fw/9GIZx57o7ISYzeqMGrgGskAeZii71
UM3tBD/yqGVbClbfd8T9BB1vpWV35q6e96AwQIKS4e0EJC+oIYgsMo4YCKJSeIqO
g9DeIpa5CXzgI3dxbySDgN3NPBzUQxaV9pmmgX4JySOlw4bstB2I9IvibrzrZwTq
/sTmhBpkJrt6aD4qqAtx8N63c4kG6vQihyZwKuspaXeZLozp+KbhkeKlB5RPjV2j
oi00eFm9q1yvgD9wyxbDaibeg28GmCd5zv0VxHY/+H8Twqku+XfcF0TiSXOBYdr9
MywvTbxLEabIuX3yfMIiglmqp5uAN4F9V9BisxK+wdlGZDA4jhX5wPuocIRgwp61
OxYPqcxLivhumpaPOJaoePLhrGU7h4DDJavhDsr/sRMWQF+bxibSoc+MU+A2sEVn
NzyPbZsgUutgQexHeoKdiCfjKDM+8fMPp+g7FOTEonPyEK1pV/iqACbSCUiVWMCn
A3r6PZ7V4mJLAf5RWi27Cqr/i9M648i3YHDVR96eSZ0PDxfNf4p25KDU3yAO5Q/f
BN4vW4fZhie63VILrVodZV+/qypfnLiyupDJFZXqbdLP/i/3q0ccQPTQg8g5/t/2
iCn3nVcgSsIJdZ6WfbLcO/uHVdnyFgxahbjsfP76n9XRuPCtzInSD6WkG9yg69/6
hp0MsuugwdVE+qU=
=Sv9S
-----END PGP SIGNATURE-----
--- End Message ---
--
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers