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

Pin zarr < 3 #1767

Merged
merged 1 commit into from
Jan 9, 2025
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- Read jp2k compressed associated images in tiff files ([#1754](../../pull/1754))
- Improve writing to zarr sinks from multiple processes ([#1713](../../pull/1713))
- Slightly faster GDAL validateCOG ([#1761](../../pull/1761))
- Improve clearing caches ([#1765](../../pull/1765))
- Improve clearing caches ([#1766](../../pull/1766))

### Changes

Expand All @@ -24,6 +24,7 @@
- Don't include cache libraries in [common] deployments ([#1758](../../pull/1758))
- Specify empty_dir=yes when constructing vsicurl parameters ([#1760](../../pull/1760))
- Update how some associated images are read in tiff files ([#1763](../../pull/1763))
- Pin zarr < 3 ([#1767](../../pull/1767))

### Bug Fixes

Expand Down
3 changes: 2 additions & 1 deletion sources/zarr/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def prerelease_local_scheme(version):
],
install_requires=[
f'large-image{limit_version}',
'zarr',
# zarr 3 removes the SQLiteStore
'zarr<3',
# numcodecs had been required by zarr, but now needs to be asked for
'numcodecs',
# Without imagecodecs-numcodecs, some jpeg encoded data cannot be read
Expand Down
Loading