Your message dated Tue, 11 Aug 2020 11:35:36 +0000
with message-id <e1k5sz6-0008ra...@fasolo.debian.org>
and subject line Bug#966991: fixed in seaborn 0.10.1-2
has caused the Debian Bug report #966991,
regarding seaborn: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i
python{version} -p 3.8 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 ow...@bugs.debian.org
immediately.)
--
966991: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=966991
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: seaborn
Version: 0.10.1-1
Severity: serious
Justification: FTBFS on amd64
Tags: bullseye sid ftbfs
Usertags: ftbfs-20200802 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:217: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_seaborn/build;
> python3.8 -m pytest
> ============================= test session starts
> ==============================
> platform linux -- Python 3.8.5, pytest-4.6.11, py-1.8.1, pluggy-0.13.0
> rootdir: /<<PKGBUILDDIR>>, inifile: 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 ..............................F............ [
> 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 ..........................................ss [
> 99%]
> s
> [100%]
>
> =================================== FAILURES
> ===================================
> ________________________ TestHeatmap.test_square_aspect
> ________________________
>
> self = <seaborn.tests.test_matrix.TestHeatmap object at 0x7f885889eb80>
>
> def test_square_aspect(self):
>
> ax = mat.heatmap(self.df_norm, square=True)
> > nt.assert_equal(ax.get_aspect(), "equal")
>
> seaborn/tests/test_matrix.py:423:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> /usr/lib/python3.8/unittest/case.py:912: in assertEqual
> assertion_func(first, second, msg=msg)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <nose.tools.trivial.Dummy testMethod=nop>, first = 1.0, second =
> 'equal'
> msg = "1.0 != 'equal'"
>
> def _baseAssertEqual(self, first, second, msg=None):
> """The default assertEqual implementation, not type specific."""
> if not first == second:
> standardMsg = '%s != %s' % _common_shorten_repr(first, second)
> msg = self._formatMessage(msg, standardMsg)
> > raise self.failureException(msg)
> E AssertionError: 1.0 != 'equal'
>
> /usr/lib/python3.8/unittest/case.py:905: AssertionError
> =============================== warnings summary
> ===============================
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_axisgrid.py::TestFacetGrid::test_set_ticklabels
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_seaborn/build/seaborn/axisgrid.py:936:
> UserWarning: FixedFormatter should only be used together with FixedLocator
> ax.set_yticklabels(labels, **kwargs)
>
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_axisgrid.py::TestFacetGrid::test_set_ticklabels
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_seaborn/build/seaborn/axisgrid.py:924:
> UserWarning: FixedFormatter should only be used together with FixedLocator
> ax.set_xticklabels(curr_labels, **kwargs)
>
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_axisgrid.py::TestFacetGrid::test_set_ticklabels
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_seaborn/build/seaborn/axisgrid.py:934:
> UserWarning: FixedFormatter should only be used together with FixedLocator
> ax.set_yticklabels(curr_labels, **kwargs)
>
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_categorical.py::TestCategoricalPlotter::test_1d_input_data
>
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_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.8_seaborn/build/seaborn/tests/test_categorical.py::TestCategoricalStatPlotter::test_nested_stats_with_units
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_categorical.py::TestBoxenPlotter::test_box_ends_finite
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_regression.py::TestRegressionPlotter::test_estimate_units
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestRelationalPlotter::test_wide_list_variables
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestRelationalPlotter::test_wide_list_of_series_variables
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestLinePlotter::test_wide_list_variables
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestLinePlotter::test_wide_list_of_series_variables
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestLinePlotter::test_lineplot_smoke
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestLinePlotter::test_lineplot_smoke
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestScatterPlotter::test_wide_list_variables
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestScatterPlotter::test_wide_list_of_series_variables
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestScatterPlotter::test_scatterplot_smoke
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestRelPlotter::test_wide_list_variables
> .pybuild/cpython3_3.8_seaborn/build/seaborn/tests/test_relational.py::TestRelPlotter::test_wide_list_of_series_variables
> /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.8_seaborn/build/seaborn/tests/test_matrix.py::TestClustermap::test_row_col_colors_ignore_heatmap_kwargs
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_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/latest/warnings.html
> ======= 1 failed, 562 passed, 28 skipped, 19 warnings in 123.57 seconds
> ========
> E: pybuild pybuild:352: test: plugin distutils failed with: exit code=1: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_seaborn/build; python3.8 -m pytest
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.8
> returned exit code 13
The full build log is available from:
http://qa-logs.debian.net/2020/08/02/seaborn_0.10.1-1_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!
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.10.1-2
Done: Nilesh Patra <npatra...@gmail.com>
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 966...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Nilesh Patra <npatra...@gmail.com> (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 ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Tue, 11 Aug 2020 00:12:12 +0530
Source: seaborn
Architecture: source
Version: 0.10.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers
<debian-science-maintain...@lists.alioth.debian.org>
Changed-By: Nilesh Patra <npatra...@gmail.com>
Closes: 966991
Changes:
seaborn (0.10.1-2) unstable; urgency=medium
.
* Team Upload.
* Refresh patch
* Fix square aspect test (Closes: #966991)
Checksums-Sha1:
5eb44aa547448c62dec871a7f9261274434a3ca2 2231 seaborn_0.10.1-2.dsc
16bdacf976870f646b223ca4829436cbfc7331c1 5884 seaborn_0.10.1-2.debian.tar.xz
1400e384bf96ada1ced72402c6b1c5eefd20f349 9219 seaborn_0.10.1-2_amd64.buildinfo
Checksums-Sha256:
322fb544fba477dba17d9b36db2197f2e25f3f0cd578f6cc799733ff5f1eeef8 2231
seaborn_0.10.1-2.dsc
21bc1ebe5fd6eeb59bec1d848ac4ec071f60d37046940762cc437102e29261c4 5884
seaborn_0.10.1-2.debian.tar.xz
69d8a23c29e73a1de11b49027d3ddec706d1230b843113b3843558f862d7c3a1 9219
seaborn_0.10.1-2_amd64.buildinfo
Files:
1e19acb62b31f13558d726cd22dccf85 2231 python optional seaborn_0.10.1-2.dsc
d4f5c8689c750e5a24a2e29b86f01d32 5884 python optional
seaborn_0.10.1-2.debian.tar.xz
5891fed9b7b72e1773ec801f749eba35 9219 python optional
seaborn_0.10.1-2_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCgAyFiEEPpmlJvXcwMu/HO6mALrnSzQzafEFAl8yfSgUHG5wYXRyYTk3
NEBnbWFpbC5jb20ACgkQALrnSzQzafHOxBAAnDwBqZ5hwAAPVYX0IqaJQIFxpxjj
8HHRwwha2qtURhuCB3YQoBxpLGZEOs0y4T1F5u4Lx5WQKTMzLaAphyqWPq8RXyCa
HUL2e1rkD/V7mzNE94C2ex9Us+cmgX4PeZUvb/S/UW9ZlviaYsVNFlRng8iPtYMp
l51UoIdA5va9+GitkitXgNvOrdVf4PJuJU0TYyHP8pCxp3fcuu/4rgCOqmcxicrx
gYOzsvL2MnkvMTrb1Ean4zz3gsMP4HBmgOMTWQ4T4e+sGwciEqCA4+ANUZI67h5S
UTyHBm7Px4optxdeI6H+mASoVIjN6YbmAMg+YHSGNdrt2iZOByo/lwXuDHwFVbOQ
TdQTBVPQJXLPnV/sMTfBOuwBSarYdfmc9T4G7lH1Eyw3qWCYUVr+g7iV3n2gV3YK
3iHBNcQDn1hii4hbVvCZirYkN47elitDA2DMwvAuHV8VKxhXrDFC3UNmso5kHc2n
1p2pqtGEwJXgNcrTIiEJsPGGs+UhWKgM7K3q8rP37vK02I4iuanlQOH9H7C0eamb
OETmpZum+UMk9Pz0q8HKUVboDsl/hoLPJaEEYVAsPoZm175DI+5H4bSvf2p9E6v6
TRXxl4HLwUCfq/udrrJ/vXDQAFqxC0y9LNyMzRaLZqDB+jhUMkrzcBZmsFwbRrQw
ak1/Ls1Rad9jG54=
=VWtz
-----END PGP SIGNATURE-----
--- End Message ---