Your message dated Thu, 29 Dec 2022 09:36:49 +0000
with message-id <e1paplf-004qzw...@fasolo.debian.org>
and subject line Bug#1004869: fixed in python-xarray 2022.12.0-2
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: 2022.12.0-2
Done: Jochen Sprickerhof <jspri...@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.
Jochen Sprickerhof <jspri...@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: Thu, 29 Dec 2022 09:18:29 +0100
Source: python-xarray
Architecture: source
Version: 2022.12.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
<debian-science-maintain...@lists.alioth.debian.org>
Changed-By: Jochen Sprickerhof <jspri...@debian.org>
Closes: 1004869
Changes:
 python-xarray (2022.12.0-2) unstable; urgency=medium
 .
   * Team upload.
   * Add patch to fix FTBFS on i386.
     Thanks to Adrian Bunk (Closes: 1004869)
   * Use execute_after_ in d/rules
   * Set R³ in d/control
Checksums-Sha1:
 91355225199439d06b1c6715904ce3db28d46067 3408 python-xarray_2022.12.0-2.dsc
 65b1a1655491365c4302de28c77b052d8492cda8 14484 
python-xarray_2022.12.0-2.debian.tar.xz
 b81c104c0c1dfb3848ee047da36b0381ae804c31 10931 
python-xarray_2022.12.0-2_source.buildinfo
Checksums-Sha256:
 e69d82c7c36a12f34ac45ecc80d01f196b458f2479b11db3d9e857e0af294154 3408 
python-xarray_2022.12.0-2.dsc
 e14b279af2bb9a180619e8dd682e5544e5f0511c26fbef8deb4f2ad1b2491731 14484 
python-xarray_2022.12.0-2.debian.tar.xz
 89264c6943905d4b874efb0c3cdd2cf126abf83a0c648a3018ff1d5823fc8eb7 10931 
python-xarray_2022.12.0-2_source.buildinfo
Files:
 28e1c4e3789d891b3da665f60176aa33 3408 python optional 
python-xarray_2022.12.0-2.dsc
 00e054e0554ea9d05e83a567237a76b6 14484 python optional 
python-xarray_2022.12.0-2.debian.tar.xz
 cea8482d238a445c2c0548021c72d944 10931 python optional 
python-xarray_2022.12.0-2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJIBAEBCgAyFiEEc7KZy9TurdzAF+h6W//cwljmlDMFAmOtWtYUHGpzcHJpY2tl
QGRlYmlhbi5vcmcACgkQW//cwljmlDMjxRAAmN9qFTQ0Ps469Fb59xRrlb09C00z
K3iCA4qWHdrpOg32PETAcbDbUh3obU8Hg7nH3cq+Y7kyHuWsA8fiozZqhWDYw2Wy
w54LtyqoPpbO3eBdY2+DukDAAwBxYOuuS1cxVpbSmTYYZeK+bQaqYQIYnh4wKOap
lhF01viWElPlZP4cjxwrmNqG98gs5V8kawmijt2W4CdYuPNKAsnL/Gij8uneZECK
DDih8pJuWBcwBtHgN4ADS9y+DVqoGn/Y0S0VASD1jaf8dh3583+JLiyjE9t5vJEo
CMFcYoTA+DG/ERLeJNuDjr+5Ic5w1UQbvL/R3d1XIN1UJ8v3SY61H7BSDR0Y/v/g
JQn2rg3eRg9M2Q6OmLT2QQudnQcxbwgQN3WeC+xqnVwpX/7zKyYriHX40jPDbH8T
IWc9Nue8+IBdBTexoRBvsDleecuu1LXeBvug5BVc6IY2a/+pAOi9nRb+NyyCSZt1
n78ZK40/wiA4URm2Tf29IGL+CSSgFRV2JmGM86s9Oq/YqTFGO4sgJcGtFCJGRmmJ
Z70c8ZqHiIorWdQ/w6HdlvPbEBsuHpiQUu4Xv1t3viVF/5zZhqRWKXCjkd3UmCf2
gfb6Nz7xV+QYtNP5XVbBUk3yuB5VeJ9TTMFDZRwhYOvgmnEb9taB6h1UVfoj2JoE
9amDxD8vfFIyiVo=
=u9Kv
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to