-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility with Zarr v3b2 #9795
base: main
Are you sure you want to change the base?
Conversation
@@ -1126,13 +1128,11 @@ def _create_cf_dataset(): | |||
|
|||
def test_grid_mapping_and_bounds_are_not_coordinates_in_file(self) -> None: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some of these CF convention handling test really only need to be run with one backend.
cc @kmuehlbauer in case that interests you. Similarly with the "coordinates"
roundtripping
* main: Bump codecov/codecov-action from 4.6.0 to 5.0.2 in the actions group (pydata#9793) Buffer types (pydata#9787)
I did some refactoring to fix a test. As an upside, I think we now more efficient when overwriting existing variables. |
@@ -867,16 +868,27 @@ def store( | |||
""" | |||
import zarr | |||
|
|||
existing_keys = tuple(self.zarr_group.array_keys()) | |||
if self._mode == "w": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic change. We now skip all these checks for mode="w". i think earlier, zarr would erase the group so all the logic below was not activated. Now that zarr does not erase the group, we must skip all the logic below.
@@ -964,6 +971,70 @@ def store( | |||
def sync(self): | |||
pass | |||
|
|||
def _open_existing_array(self, *, name) -> ZarrArray: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just moved it around so set_variables
is easier to follow
|
||
return zarr_array | ||
|
||
def _create_new_array( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just moved it around so set_variables
is easier to follow
@@ -3397,7 +3395,7 @@ def test_region_write(self) -> None: | |||
"set": 5, | |||
"get": 10, | |||
"list_dir": 3, | |||
"list_prefix": 0, | |||
"list_prefix": 4, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wild. zarr is calling list_prefix(prefix='')
twice on group open; and then listing each variable:
listing ''
listing ''
listing 'x/'
listing 'foo/'
cc @d-v-b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
weird! that's definitely not needed
Remaining upstream failures are zarr-developers/zarr-python#2501 and that we seem to now have 4 new |
Closes #9277