-
-
Notifications
You must be signed in to change notification settings - Fork 368
Ensure absolute paths work with consolidate metadata #3428
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
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3428 +/- ##
=======================================
Coverage 94.92% 94.92%
=======================================
Files 79 79
Lines 9503 9503
=======================================
Hits 9021 9021
Misses 482 482
🚀 New features to boost your workflow:
|
d-v-b
left a comment
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.
thanks! we just need some release notes and then this is good to go.
Writing to zarr with `mode='r+'` was broken by pydata#10625, due to a Zarr bug (zarr-developers/zarr-python#3428). This add a work-around that works on older versions of Zarr. The PR that introduced this bug has not yet appeared in an xarray release, so there's no need for a release note.
|
Should be good to go now |
|
thanks @shoyer! |
This ensures syntax like
root['/subgroup']works equivalently toroot['subgroup']when using consolidated metadata.TODO:
changes/