-
Notifications
You must be signed in to change notification settings - Fork 2
Migrate to zarr-python 3 #49
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
base: main
Are you sure you want to change the base?
Conversation
@d-v-b I think this is all good for review now. The only thing broken is the docstests, because memory stores have a different name each time they're printed (because the memory address changes). I'm not too sure the best way to fix this... |
I think the best solution would be for zarr-python to stop using the memory address in the repr for memory stores :) |
dimension_separator=array._dimension_separator, | ||
compressor=array.compressor, | ||
dimension_separator=array.metadata.dimension_separator, | ||
compressor=array.compressors[0].get_config(), |
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.
I believe this will fail if the array has no compressors
is it OK if I make commits against |
Yeah go for it! |
This is a work in progress, switching exisiting code from
zarr-python
2 tozarr-python
3. I will pick this up again at some point, or someone else is welcome to pick it up and run with it to finish it.