Your message dated Fri, 24 Feb 2023 04:36:24 +0000
with message-id <e1pvpom-004qyk...@fasolo.debian.org>
and subject line Bug#1004869: fixed in python-xarray 2023.01.0-1.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.01.0-1.1
Done: Peter Michael Green <plugw...@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.
Peter Michael Green <plugw...@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: SHA256

Format: 1.8
Date: Sun, 19 Feb 2023 00:50:57 +0000
Source: python-xarray
Architecture: source
Version: 2023.01.0-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
<debian-science-maintain...@lists.alioth.debian.org>
Changed-By: Peter Michael Green <plugw...@debian.org>
Closes: 1004869
Changes:
 python-xarray (2023.01.0-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
 .
   [ Jochen Sprickerhof ]
   * 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:
 3df7b6bf83727e4fea80e41b9a6d4c92f242aa34 3389 python-xarray_2023.01.0-1.1.dsc
 147368ab2ec78f544a017a85c4fb2b289db43a14 14540 
python-xarray_2023.01.0-1.1.debian.tar.xz
 d9e28cc9ba0244648140020f17205205cc86d7ca 18950 
python-xarray_2023.01.0-1.1_source.buildinfo
Checksums-Sha256:
 fedf42e0911c879687e1291f23a0cc149cf9e18ba15145c5258a2cca6e92912d 3389 
python-xarray_2023.01.0-1.1.dsc
 1609d069731ebdd644d5d5b4464d8faffdc6f7ac4a2e511e004476def4387e8f 14540 
python-xarray_2023.01.0-1.1.debian.tar.xz
 1c1d3e4465919d4d695b75a589d21cdc7b58d57fc58612290677450ef16c34c2 18950 
python-xarray_2023.01.0-1.1_source.buildinfo
Files:
 8dfded9b05a7e5f6b72dbf07c9f5b4cc 3389 python optional 
python-xarray_2023.01.0-1.1.dsc
 7aa4e432e9bdad4c83e643b22d72e5de 14540 python optional 
python-xarray_2023.01.0-1.1.debian.tar.xz
 837ee37e654f54a1d06361938f9b86f8 18950 python optional 
python-xarray_2023.01.0-1.1_source.buildinfo

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

iQJIBAEBCAAyFiEEU0DQATYMplbjSX63DEjqKnqP/XsFAmPxlCQUHHBsdWd3YXNo
QGRlYmlhbi5vcmcACgkQDEjqKnqP/XuLlg/+IrQDG27vH51G+JyIhkp+bxYu6VoP
a3awNZnig3cAWJufT+TtDlkqndDps5flRsCrUe7u8D9JPBAhfBAVxnHngWY6paAJ
ZEF5yxJy+c0BWXNWxmw9K6rVY/u0xa01PHAyC3bjK9jWQfxLubcH/QU6mOqt2P5C
JBh2sDkkE55sPrnFii1POdS6Y+psZRBRi9M7vE4PSfGFqozEOymGmSbM13sp1ib3
SSAKd1j60EualTqkNXUmKez/hd/Xwr+Cqnif6nMsNTAXDVfyp+a/svD4i+ici+wG
mxA7QmZrVS1O/mKpa2hBxFlHsAsidpYhFry4dTXg2nBQ8K52Y4RiQXLWSaFMCg3v
gxX4MmIq38/lTI3ZT0twzALBV7FOKglY07mDZqFvdtt0xhGwQgeHslNts0on/LvI
7bOY2GgTqGmPWQ6G2Intu1tOxJVafdKR7Qzmdt0CPuqU4B4KxhiBUikW/FfTaNXt
tHOjn+dOIxx12JrbDC2r+6xkiNqgdwDU7ikD4PeOg2KZk0zpJKgAA/bh0LVtR/el
3PR8B6actKDa97/1LPRhV95GKnNZjDd/jWLL69Jn/aXMJeQGo3OmI/gctRymBhME
68FDlbw3vG/mXrCnOoF4BWZaYJ2//n5IoJQfki4lEKoQmpnVayQ4quvoZ7I7ugb1
NZDMb03D5P2LNLE=
=p+IP
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to