Skip to content

Commit aa539b2

Browse files
authored
Merge pull request #132 from thewtex/zarr-python-3-0-0
zarr python 3 0 0
2 parents 087217b + 6f79df7 commit aa539b2

File tree

4 files changed

+1421
-1363
lines changed

4 files changed

+1421
-1363
lines changed

.github/workflows/test.yml

-7
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,6 @@ jobs:
3232
python -m pip install --upgrade pip
3333
python -m pip install -e ".[tensorstore]"
3434
35-
- name: Install Zarr Python 3 for OME-Zarr 0.5
36-
if:
37-
${{ matrix.python-version != '3.9' && matrix.python-version != '3.10'
38-
}}
39-
run: |
40-
python -m pip install --upgrade --pre "zarr==3.0.0b2"
41-
4235
- name: Test with pytest
4336
run: |
4437
pytest --junitxml=junit/test-results.xml

ngff_zarr/to_ngff_zarr.py

+3
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ def to_ngff_zarr(
287287
mode="a",
288288
**zarr_kwargs,
289289
**dimension_names_kwargs,
290+
**format_kwargs,
290291
)
291292

292293
shape = image.data.shape
@@ -433,6 +434,7 @@ def to_ngff_zarr(
433434
compute=True,
434435
return_stored=False,
435436
**zarr_kwargs,
437+
**format_kwargs,
436438
**dimension_names_kwargs,
437439
**kwargs,
438440
)
@@ -463,6 +465,7 @@ def to_ngff_zarr(
463465
compute=True,
464466
return_stored=False,
465467
**zarr_kwargs,
468+
**format_kwargs,
466469
**dimension_names_kwargs,
467470
**kwargs,
468471
)

0 commit comments

Comments
 (0)