Dear maintainer:
During a rebuild of all packages in unstable, this package failed to build.
Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:
https://people.debian.org/~sanvila/build-logs/202608/
About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.
If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.
If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:python-rioxarray, so that this is still
visible in the BTS web page for this package.
Thanks.
--------------------------------------------------------------------------------
[...]
except AttributeError:
if padded_ds.rio.nodata is not None and not numpy.isnan(
padded_ds.rio.nodata
):
assert all([padded_ds.isel(x=0, y=0).values == padded_ds.rio.nodata])
else:
assert all(numpy.isnan([padded_ds.isel(x=0, y=0).values]))
# finally, clip again
clipped_ds2 = padded_ds.rio.clip_box(
minx=xdi.x[4].values,
miny=xdi.y[6].values,
maxx=xdi.x[6].values,
maxy=xdi.y[4].values,
)
_assert_xarrays_equal(clipped_ds, clipped_ds2)
# padded data should have the same size as original data
if hasattr(xdi, "variables"):
for var in xdi.rio.vars:
assert_almost_equal(
xdi[var].rio._cached_transform(),
padded_ds[var].rio._cached_transform(),
)
for padded_size, original_size in zip(
padded_ds[var].shape, xdi[var].shape
):
assert padded_size == original_size
else:
test/integration/test_integration_rioxarray.py:328: ValueError