Skip to content
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

Update zarr source dependencies #1646

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.29.11

### Changes

- Update zarr dependencies ([#1646](../../pull/1646))

## 1.29.10

### Improvements
Expand Down
7 changes: 4 additions & 3 deletions sources/zarr/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ def prerelease_local_scheme(version):
install_requires=[
f'large-image{limit_version}',
'zarr',
# I am uncertain why this is required, since numcodecs is required by
# zarr; but without it some jpeg encoded data cannot be read
'imagecodecs-numcodecs',
# numcodecs had been required by zarr, but now needs to be asked for
'numcodecs',
# Without imagecodecs-numcodecs, some jpeg encoded data cannot be read
'imagecodecs-numcodecs!=2024.9.22',
],
extras_require={
'girder': f'girder-large-image{limit_version}',
Expand Down