-
-
Notifications
You must be signed in to change notification settings - Fork 282
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
Remove zstandard dependency in favor of numcodecs #1838
Conversation
The correct default level should be |
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.
At this level the default should stay 0
which the Zstandard C library will interpret as use the default that was built with as defined by zstd.h:
https://github.com/facebook/zstd/blob/97291fc5020a8994019ab76cf0cda83a9824374c/lib/zstd.h#L338
Now that numcodecs 0.13 is out, we can move forward with this. |
I added
zstandard
as a dependency because thezstd
in numcodecs doesn't expose thechecksum
config. This will be introduced in zarr-developers/numcodecs#519. Once that PR is merged, we can use the numcodecs version.