Your message dated Wed, 11 Oct 2023 22:34:02 +0000
with message-id <e1qqhme-0012kn...@fasolo.debian.org>
and subject line Bug#1053748: fixed in satpy 0.43.0-6
has caused the Debian Bug report #1053748,
regarding satpy: autopkgtest needs update for python-xarray 2023.09.0
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.)
--
1053748: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1053748
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: satpy
Version: 0.43.0-5
User: debian...@lists.debian.org
Usertags: needs-update
Hi Maintainer
Since the upload of python-xarray 2023.09.0-1, the autopkgtests of
satpy are failing [1]. I've copied what I hope is the relevant part
of the log below.
Regards
Graham
[1] https://ci.debian.net/packages/s/satpy/testing/amd64/
357s =================================== FAILURES
===================================
357s _________________ TestEncodingKwarg.test_encoding_kwarg[True]
__________________
357s
357s self = <satpy.tests.writer_tests.test_cf.TestEncodingKwarg object
at 0x7ff117253190>
357s scene = <satpy.scene.Scene object at 0x7ff040590990>
357s encoding = {'test-array': {'_FillValue': 3, 'add_offset': 0.0,
'complevel': 7, 'compression': 'zlib', ...}}
357s filename =
'/tmp/pytest-of-debci/pytest-0/test_encoding_kwarg_True_0/test.nc'
357s expected = {'complevel': 7, 'data': [10, 20, 30], 'dtype': <class
'numpy.int8'>, 'fill_value': 3, ...}
357s
357s def test_encoding_kwarg(self, scene, encoding, filename, expected):
357s """Test 'encoding' keyword argument."""
357s scene.save_datasets(filename=filename, encoding=encoding,
writer='cf')
357s > self._assert_encoding_as_expected(filename, expected)
357s
357s /usr/lib/python3/dist-packages/satpy/tests/writer_tests/test_cf.py:1388:
357s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _
357s
357s self = <satpy.tests.writer_tests.test_cf.TestEncodingKwarg object
at 0x7ff117253190>
357s filename =
'/tmp/pytest-of-debci/pytest-0/test_encoding_kwarg_True_0/test.nc'
357s expected = {'complevel': 7, 'data': [10, 20, 30], 'dtype': <class
'numpy.int8'>, 'fill_value': 3, ...}
357s
357s def _assert_encoding_as_expected(self, filename, expected):
357s with xr.open_dataset(filename, mask_and_scale=False) as f:
357s np.testing.assert_array_equal(f['test-array'][:],
expected["data"])
357s assert f['test-array'].attrs['scale_factor'] ==
expected["scale_factor"]
357s assert f['test-array'].attrs['_FillValue'] ==
expected["fill_value"]
357s assert f['test-array'].dtype == expected["dtype"]
357s > assert f["test-array"].encoding["complevel"] ==
expected["complevel"]
357s E assert 0 == 7
357s
357s /usr/lib/python3/dist-packages/satpy/tests/writer_tests/test_cf.py:1396:
AssertionError
357s _______________ TestEncodingAttribute.test_encoding_kwarg[True]
________________
357s
357s self = <satpy.tests.writer_tests.test_cf.TestEncodingAttribute
object at 0x7ff1172366d0>
357s scene = <satpy.scene.Scene object at 0x7ff040705750>
357s encoding = {'test-array': {'_FillValue': 3, 'add_offset': 0.0,
'complevel': 7, 'compression': 'zlib', ...}}
357s filename =
'/tmp/pytest-of-debci/pytest-0/test_encoding_kwarg_True_1/test.nc'
357s expected = {'complevel': 7, 'data': [10, 20, 30], 'dtype': <class
'numpy.int8'>, 'fill_value': 3, ...}
357s
357s def test_encoding_kwarg(self, scene, encoding, filename, expected):
357s """Test 'encoding' keyword argument."""
357s scene.save_datasets(filename=filename, encoding=encoding,
writer='cf')
357s > self._assert_encoding_as_expected(filename, expected)
357s
357s /usr/lib/python3/dist-packages/satpy/tests/writer_tests/test_cf.py:1388:
357s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _
357s
357s self = <satpy.tests.writer_tests.test_cf.TestEncodingAttribute
object at 0x7ff1172366d0>
357s filename =
'/tmp/pytest-of-debci/pytest-0/test_encoding_kwarg_True_1/test.nc'
357s expected = {'complevel': 7, 'data': [10, 20, 30], 'dtype': <class
'numpy.int8'>, 'fill_value': 3, ...}
357s
357s def _assert_encoding_as_expected(self, filename, expected):
357s with xr.open_dataset(filename, mask_and_scale=False) as f:
357s np.testing.assert_array_equal(f['test-array'][:],
expected["data"])
357s assert f['test-array'].attrs['scale_factor'] ==
expected["scale_factor"]
357s assert f['test-array'].attrs['_FillValue'] ==
expected["fill_value"]
357s assert f['test-array'].dtype == expected["dtype"]
357s > assert f["test-array"].encoding["complevel"] ==
expected["complevel"]
357s E assert 0 == 7
357s
357s /usr/lib/python3/dist-packages/satpy/tests/writer_tests/test_cf.py:1396:
AssertionError
357s _____________ TestEncodingAttribute.test_encoding_attribute[True]
______________
357s
357s self = <satpy.tests.writer_tests.test_cf.TestEncodingAttribute
object at 0x7ff117235950>
357s scene_with_encoding = <satpy.scene.Scene object at 0x7ff0207f7250>
357s filename =
'/tmp/pytest-of-debci/pytest-0/test_encoding_attribute_True_0/test.nc'
357s expected = {'complevel': 7, 'data': [10, 20, 30], 'dtype': <class
'numpy.int8'>, 'fill_value': 3, ...}
357s
357s def test_encoding_attribute(self, scene_with_encoding,
filename, expected):
357s """Test 'encoding' dataset attribute."""
357s scene_with_encoding.save_datasets(filename=filename, writer='cf')
357s > self._assert_encoding_as_expected(filename, expected)
357s
357s /usr/lib/python3/dist-packages/satpy/tests/writer_tests/test_cf.py:1431:
357s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _
357s
357s self = <satpy.tests.writer_tests.test_cf.TestEncodingAttribute
object at 0x7ff117235950>
357s filename =
'/tmp/pytest-of-debci/pytest-0/test_encoding_attribute_True_0/test.nc'
357s expected = {'complevel': 7, 'data': [10, 20, 30], 'dtype': <class
'numpy.int8'>, 'fill_value': 3, ...}
357s
357s def _assert_encoding_as_expected(self, filename, expected):
357s with xr.open_dataset(filename, mask_and_scale=False) as f:
357s np.testing.assert_array_equal(f['test-array'][:],
expected["data"])
357s assert f['test-array'].attrs['scale_factor'] ==
expected["scale_factor"]
357s assert f['test-array'].attrs['_FillValue'] ==
expected["fill_value"]
357s assert f['test-array'].dtype == expected["dtype"]
357s > assert f["test-array"].encoding["complevel"] ==
expected["complevel"]
357s E assert 0 == 7
357s
357s /usr/lib/python3/dist-packages/satpy/tests/writer_tests/test_cf.py:1396:
AssertionError
--- End Message ---
--- Begin Message ---
Source: satpy
Source-Version: 0.43.0-6
Done: Antonio Valentino <antonio.valent...@tiscali.it>
We believe that the bug you reported is fixed in the latest version of
satpy, 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 1053...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Antonio Valentino <antonio.valent...@tiscali.it> (supplier of updated satpy
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, 11 Oct 2023 21:39:57 +0000
Source: satpy
Architecture: source
Version: 0.43.0-6
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project <pkg-grass-de...@lists.alioth.debian.org>
Changed-By: Antonio Valentino <antonio.valent...@tiscali.it>
Closes: 1053748
Changes:
satpy (0.43.0-6) unstable; urgency=medium
.
* debian/patches:
- New 0009-Fix-compatibility-with-xarray-v2023.09.0.patch
(Closes: #1053748).
Checksums-Sha1:
34f507d4f1962322e58b24f8839eb7077106148f 3308 satpy_0.43.0-6.dsc
b80d5a82935afb0a9168a8637ad48a0aa7b543aa 956144 satpy_0.43.0-6.debian.tar.xz
32d8e1939dd116324fe5594eaecfb21ecaae5fe5 21674 satpy_0.43.0-6_amd64.buildinfo
Checksums-Sha256:
c2a50b674df1d2a68e60d4c04b9a13d4408a8462a60a3586cde5c1f047948c12 3308
satpy_0.43.0-6.dsc
73db11ac7a475401fb7e033e6711a765f0fe5ee52d026217bf06f0ff3adf6701 956144
satpy_0.43.0-6.debian.tar.xz
e66fc0042c5a7447d30694f750028f99136dc0d93996c18478b042a1d127761a 21674
satpy_0.43.0-6_amd64.buildinfo
Files:
6fee0b8f280885de4a6d41fa3da9ba58 3308 python optional satpy_0.43.0-6.dsc
3f1cdb69c1cb3f460efb1b157317c02c 956144 python optional
satpy_0.43.0-6.debian.tar.xz
69242e8785d6a5aa82c279ff41314659 21674 python optional
satpy_0.43.0-6_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJRBAEBCgA7FiEEO3DyCaX/1okDxHLF6/SKslePmBIFAmUnHcodHGFudG9uaW8u
dmFsZW50aW5vQHRpc2NhbGkuaXQACgkQ6/SKslePmBKXAg//V96wXWUlQ7iUoy9V
BPmv9qQZlX/mve7g6WFFO3iArQB2QirJfz3AMpKCgbT08DkwQBzSnQqKkXS0kMHw
D+13Nm6BDyzuN8+qHogu94cHsqeBGgPU/cUbagLqSPU3qu+r0IOr3IqSamqqWwve
xPSbAzrxcHi/nZF4zWUA/rEDcr4YGIWpdeF+iwvjnnPXEuRU7hHK9eaFqbzAoOir
ryP0osz4cSe3MwHg3Y572RX5s2+6jP4w/l89FJVKOVrxrayXQ9QQQ3Ew5Ad2pvAm
ttbyQahNT8yl2B+6j2RsinIRD7HsYHMcp6bIfKu7IVDOXVaC1TFHn2gslqoHQnUw
vXj31t6pi3wFtHZ/EKN2r3TthbGhFmLIBUXWbNsGJCLmFxvJjQiztK4dw+sOaTl1
kGN1ceV/lqlD/HvU//Mx5PlrdT943zjKmyiJo01fplzPMRUoBTU/wRbxPeR5uV4p
/VGj9QxExrA1phD5cb6eobr9LO8Y0T5oPwasXeJtkQ/PrfaCrVLdpnXMRqMUAUen
d1KpVJev1YcCs/uUvKdMRnMxXdeJwVzk7ZMFiXo8LYZ9Foz1YW+Q6g77nvWRWIP5
VFNpTf6fEznd3M6Oyl4BMTzJKj9uBRXrfzxIdK314ZbcJ319Rk2wikZbdqpHb5YG
uikGR3kKRGksLMGoeKZrWttskhA=
=mFh+
-----END PGP SIGNATURE-----
--- End Message ---