Skip to content

Commit

Permalink
Pin zarr < 3
Browse files Browse the repository at this point in the history
We expect to be able to read zarr stored in the SQLiteStore format, and
zarr hasn't released a zarr-3 compatible package for this yet.
  • Loading branch information
manthey committed Jan 9, 2025
1 parent b819db4 commit 105a5bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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

0 comments on commit 105a5bb

Please sign in to comment.