Skip to content

Tags: zarr-developers/numcodecs

Tags

v0.15.1

Toggle v0.15.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Don't overwrite codec config values when set. (#700)

* Don't overwrite codec config values when set.

A codec doesn't know where it is in the codec pipeline, so it
cannot know whether `array_spec.dtype` should match `codec.dtype`
or not.

* little more

* FIx test

* fix test

---------

Co-authored-by: Davis Bennett <[email protected]>

v0.15.0

Toggle v0.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update release notes for 0.15.0 (#691)

v0.12.1

Toggle v0.12.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix default entrypoint handling on older Pythons (#475)

v0.12.0

Toggle v0.12.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support Python 3.12 (#471)

* Support Python 3.12

* Ensure `entries.update(...)` recieves a `dict`

On Python 3.12, the existing code did not produce a `dict` that could be
used to update `entries` whereas previous Python versions had. To
workaround this issue, manually create a `dict` that can be used to
update `entries` with a format consistent to what had been seen in
Python versions before 3.12.