You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest CI runs it seems that test_backends.py::TestNCZarr::test_open_nczarr is failing with
KeyError: 'Zarr object is missing the attribute _ARRAY_DIMENSIONS and the NCZarr metadata, which are required for xarray to determine variable dimensions.'
I don't see an obvious reason for this, especially since the zarr version has not changed compared to some runs that were successful (2.13.6).
The text was updated successfully, but these errors were encountered:
The problem is that with netcdf-c=4.9.1 dimension names are lost when writing pure nczarr files. We only need it to make sure that xarray is able to read from pure nczarr.
Slightly different issue related to the latest release of netcdf-c.
Looks like nczarr attribute key changed from "_NCZARR_ARRAY" to "_nczarr_array" (see Unidata/netcdf-c#2492), so we would have to take care of this if we want to keep supporting pure nczarr.
What is your issue?
In the latest CI runs it seems that
test_backends.py::TestNCZarr::test_open_nczarr
is failing withI don't see an obvious reason for this, especially since the zarr version has not changed compared to some runs that were successful (2.13.6).
The text was updated successfully, but these errors were encountered: