We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e7749e commit 37e3489Copy full SHA for 37e3489
ngff_zarr/to_ngff_zarr.py
@@ -135,7 +135,7 @@ def _write_with_tensorstore(
135
},
136
}
137
if zarr_format == 2:
138
- spec["driver"] = "zarr2"
+ spec["driver"] = "zarr2" if sys.version_info >= (3, 10) else "zarr"
139
spec["metadata"]["chunks"] = chunks
140
spec["metadata"]["dimension_separator"] = "/"
141
spec["metadata"]["dtype"] = array.dtype.str
0 commit comments