Skip to content

Commit

Permalink
Merge pull request #1480 from girder/zarr-dependencies
Browse files Browse the repository at this point in the history
Add a dependency to the zarr source to read more compression types
  • Loading branch information
manthey authored Mar 21, 2024
2 parents ee0e101 + 8e110c2 commit f25d4c6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## 1.27.5

### Improvements
- Add a dependency to the zarr source to read more compression types ([#1480](../../pull/1480))

### Bug Fixes
- Fix an issue with single band on multi source with non uniform sources ([#1474](../../pull/1474))
- Allow alternate name axes in the multi source schema ([#1476](../../pull/1476))
Expand Down
1 change: 1 addition & 0 deletions sources/zarr/large_image_source_zarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class ZarrFileTileSource(FileTileSource, metaclass=LruCacheMetaclass):
'zarr': SourcePriority.PREFERRED,
'zgroup': SourcePriority.PREFERRED,
'zattrs': SourcePriority.PREFERRED,
'zarray': SourcePriority.PREFERRED,
'db': SourcePriority.MEDIUM,
}

Expand Down
3 changes: 3 additions & 0 deletions sources/zarr/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ 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',
],
extras_require={
'girder': f'girder-large-image{limit_version}',
Expand Down

0 comments on commit f25d4c6

Please sign in to comment.