Your message dated Wed, 22 Nov 2023 07:21:58 +0000 with message-id <e1r5hyc-000u2k...@fasolo.debian.org> and subject line Bug#1004869: fixed in python-xarray 2023.11.0-1 has caused the Debian Bug report #1004869, regarding python-xarray: autopkgtest regression on i386 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.) -- 1004869: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1004869 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
--- Begin Message ---Source: python-xarray Version: 0.21.0-1 X-Debbugs-CC: debian...@lists.debian.org Severity: serious User: debian...@lists.debian.org Usertags: regression Hi Maintainer python-xarray's autopkgtests are failing on the i386 architecture [1]. I've copied what I hope is the relevant part of the log below. Regards Graham [1] https://ci.debian.net/packages/p/python-xarray/unstable/i386/ =================================== FAILURES =================================== ___________________ test_interpolate_chunk_advanced[linear] ____________________ method = 'linear' @requires_scipy @requires_dask @pytest.mark.parametrize("method", ["linear", "nearest"]) @pytest.mark.filterwarnings("ignore:Increasing number of chunks") def test_interpolate_chunk_advanced(method): """Interpolate nd array with an nd indexer sharing coordinates.""" # Create original array x = np.linspace(-1, 1, 5) y = np.linspace(-1, 1, 7) z = np.linspace(-1, 1, 11) t = np.linspace(0, 1, 13) q = np.linspace(0, 1, 17) da = xr.DataArray( data=np.sin(x[:, np.newaxis, np.newaxis, np.newaxis, np.newaxis]) * np.cos(y[:, np.newaxis, np.newaxis, np.newaxis]) * np.exp(z[:, np.newaxis, np.newaxis]) * t[:, np.newaxis] + q, dims=("x", "y", "z", "t", "q"), coords={"x": x, "y": y, "z": z, "t": t, "q": q, "label": "dummy_attr"}, ) # Create indexer into `da` with shared coordinate ("full-twist" Möbius strip) theta = np.linspace(0, 2 * np.pi, 5) w = np.linspace(-0.25, 0.25, 7) r = xr.DataArray( data=1 + w[:, np.newaxis] * np.cos(theta), coords=[("w", w), ("theta", theta)], ) x = r * np.cos(theta) y = r * np.sin(theta) z = xr.DataArray( data=w[:, np.newaxis] * np.sin(theta), coords=[("w", w), ("theta", theta)], ) kwargs = {"fill_value": None} expected = da.interp(t=0.5, x=x, y=y, z=z, kwargs=kwargs, method=method) da = da.chunk(2) x = x.chunk(1) z = z.chunk(3) actual = da.interp(t=0.5, x=x, y=y, z=z, kwargs=kwargs, method=method) > assert_identical(actual, expected) E AssertionError: Left and right DataArray objects are not identical E E Differing values: E L E array([[[ 3.302241e-01, 3.927241e-01, ..., 1.267724e+00, 1.330224e+00], E [ 1.239764e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-5.560517e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 3.302241e-01, 3.927241e-01, ..., 1.267724e+00, 1.330224e+00]], E E [[ 3.603946e-01, 4.228946e-01, ..., 1.297895e+00, 1.360395e+00], E [ 1.346533e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-5.109700e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 3.603946e-01, 4.228946e-01, ..., 1.297895e+00, 1.360395e+00]], E E ..., E E [[ 4.810764e-01, 5.435764e-01, ..., 1.418576e+00, 1.481076e+00], E [ 1.878775e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-3.662163e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 4.810764e-01, 5.435764e-01, ..., 1.418576e+00, 1.481076e+00]], E E [[ 5.112469e-01, 5.737469e-01, ..., 1.448747e+00, 1.511247e+00], E [ 2.044535e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-3.371783e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 5.112469e-01, 5.737469e-01, ..., 1.448747e+00, 1.511247e+00]]]) E R E array([[[ 3.302241e-01, 3.927241e-01, ..., 1.267724e+00, 1.330224e+00], E [ 1.239764e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-5.560517e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 3.302241e-01, 3.927241e-01, ..., 1.267724e+00, 1.330224e+00]], E E [[ 3.603946e-01, 4.228946e-01, ..., 1.297895e+00, 1.360395e+00], E [ 1.346533e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-5.109700e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 3.603946e-01, 4.228946e-01, ..., 1.297895e+00, 1.360395e+00]], E E ..., E E [[ 4.810764e-01, 5.435764e-01, ..., 1.418576e+00, 1.481076e+00], E [ 1.878775e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-3.662163e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 4.810764e-01, 5.435764e-01, ..., 1.418576e+00, 1.481076e+00]], E E [[ 5.112469e-01, 5.737469e-01, ..., 1.448747e+00, 1.511247e+00], E [ 2.044535e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E ..., E [-3.371783e-17, 6.250000e-02, ..., 9.375000e-01, 1.000000e+00], E [ 5.112469e-01, 5.737469e-01, ..., 1.448747e+00, 1.511247e+00]]]) /usr/lib/python3/dist-packages/xarray/tests/test_interp.py:874: AssertionError
--- End Message ---
--- Begin Message ---Source: python-xarray Source-Version: 2023.11.0-1 Done: Andreas Tille <ti...@debian.org> We believe that the bug you reported is fixed in the latest version of python-xarray, 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 1004...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Andreas Tille <ti...@debian.org> (supplier of updated python-xarray 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: Wed, 22 Nov 2023 07:37:01 +0100 Source: python-xarray Architecture: source Version: 2023.11.0-1 Distribution: unstable Urgency: medium Maintainer: Debian Science Maintainers <debian-science-maintain...@lists.alioth.debian.org> Changed-By: Andreas Tille <ti...@debian.org> Closes: 1004869 1050854 1053700 Changes: python-xarray (2023.11.0-1) unstable; urgency=medium . [ Andreas Tille ] * Team upload. * New upstream version. Closes: #1050854 * Remove trailing whitespace in debian/changelog (routine-update) * Remove trailing whitespace in debian/control (routine-update) * Remove trailing whitespace in debian/rules (routine-update) * Add salsa-ci file (routine-update) * Rules-Requires-Root: no (routine-update) * Use secure URI in Homepage field. * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository-Browse. * Re-enable docs which do not segfault but do nothing else. Upstream might provide docs in future - otherwise the python-xarray-doc package could be dropped completely. . [ Rebecca N. Palmer ] * Tests: ignore rounding differences on i386. Closes: #1004869. * Tests: don't fail on big-endian systems. Closes: #1053700. Checksums-Sha1: 46cd1e80b628c1c8220debd7fb07d74400bffa38 3419 python-xarray_2023.11.0-1.dsc 6b4c2f5006a19b50881b11e68783ed7e2ac2364f 3792320 python-xarray_2023.11.0.orig.tar.gz 6761e80419733d73f3dff7520daf8d5c1c7fd65f 15572 python-xarray_2023.11.0-1.debian.tar.xz a2714dd75978ce5b829f6bbdfe7bf217a9643ff0 21702 python-xarray_2023.11.0-1_amd64.buildinfo Checksums-Sha256: 88a9850cad505ca206a4a7b3a60e7ad184461b205e530cbe54a840b40ac57e47 3419 python-xarray_2023.11.0-1.dsc f6e0978d4d61d5abe7997ccc56cf8eba5fb7a2921d9feadd6e168f5b7659cb9d 3792320 python-xarray_2023.11.0.orig.tar.gz f7e55afa25c8f036e64bc3018bed3eee5dd1bf667ad03a6898f9c5b83de40fa1 15572 python-xarray_2023.11.0-1.debian.tar.xz e06602d68a1ff9caec4bf9967ed656f4d9aae016ffef4c969a8cb7118d4c1781 21702 python-xarray_2023.11.0-1_amd64.buildinfo Files: 3cfde394f6552c416a588402d4ba7bbf 3419 python optional python-xarray_2023.11.0-1.dsc 9fff3f98b634b833ecb5def2381e526f 3792320 python optional python-xarray_2023.11.0.orig.tar.gz 11f880c8fde977a86c90d650a6a215ad 15572 python optional python-xarray_2023.11.0-1.debian.tar.xz 72ad6b6cf4ccadaa7452f3d0a67558e3 21702 python optional python-xarray_2023.11.0-1_amd64.buildinfo -----BEGIN PGP SIGNATURE----- iQJFBAEBCgAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAmVdpH0RHHRpbGxlQGRl Ymlhbi5vcmcACgkQV4oElNHGRtHGWA//arOykpflKELUN02WYDarWvh0Q3zMmV5e C4+B2PBWazWI7f9VFu9RavJvWrtKsscY0SfgI8oj8WMzAOf7C+zSz453U9Iz0jap B3GpdTMXb17VHWG80QAwE8RioYMDhpVW8YAwAZ7E4MKgee9TO8VbaNVESu3nDX5I DOdHlWhlbj+j/fLRHA8YXYvlIOQ3LwLCAj93joPF3lFYXEpBF5LzjpL7Po71fZx6 BTVf2YwMN5jb3lRNvfbcCsgYsa3q9nu+DuAtyCYCXQfFji0xtf6CKNEchP1BqOgG 0zp/GPqBeRzBJgV4gdDRS1F1V/+1S0ydrsMGe56xfs3KWjYAONhh3UYflH+SiC++ 0eHmZfSQWkCLYXWywPsmltlqb7liwhJFioKFh4FszP/d2rTHOMgCiNHujLKmLv4H Pe768ao3YY6SDHFcEQ6ingiWXhY0NKMDhE7YmSdMntOYMNhvyElZZE3pqK7DiNC3 jSjbPKsLCuz0uytvRwXE4F5uk78SfXTtfq8Tk0m5UoIQabWMuKQn+bfTjoq6Ggoa ahKghMatT8arTsCsugAsoh6qoQNyhxLpN91lefEswLaNF4emYR2dVIlfLX1enuxN ShqqKXsjH6J71dmYvetbO60aEcJS4Tj8Jjyv2w8t3mDoEQuV2Rlsf03rJKuxE9SQ o8JZf94iC0Y= =gIZk -----END PGP SIGNATURE-----
--- End Message ---