Skip to content

Commit 6d3e9cd

Browse files
committed
better version check
1 parent 3877091 commit 6d3e9cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/backends/zarr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ def open_store_variable(self, name):
821821
# probably be 3.1
822822
import zarr
823823

824-
if Version(zarr.__version__) >= Version("3.0.6"):
824+
if Version(zarr.__version__) > Version("3.0.9"):
825825
native_dtype = zarr_array.metadata.data_type.to_native_dtype()
826826
attributes["_FillValue"] = (
827827
# Use the new dtype infrastructure instead of doing xarray

0 commit comments

Comments
 (0)