-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
After adding the py38-all-but-dask CI in #3919, it discovered a few backend issues:
zarr:-
open_zarrwithchunks="auto"always tries to chunk, even ifdaskis not available (fixed in add a CI that tests xarray with all optional dependencies but dask #3919) -
ZarrArrayWrapper.__getitem__incorrectly passes the indexer'stupleattribute to_arrayize_vectorized_indexer(this only happens ifdaskis not available) (fixed in add a CI that tests xarray with all optional dependencies but dask #3919) - slice indexers with negative steps get transformed incorrectly if
daskis not available Fix negative slicing of Zarr arrays #8674
-
rasterio:callingpickle.dumpson aDatasetobject returned byopen_rasteriofails because a non-serializable lock was used (ifdaskis installed, a serializable lock is used instead)