@@ -92,8 +92,8 @@ class TIFFConverter:
9292 and is ignored for other formats, by default None
9393 (attempt to apply to OME-TIFF datasets, disable this with ``False``)
9494 version : Literal["0.4", "0.5"], optional
95- OME-NGFF version for the output Zarr store, by default "0.5 ".
96- Both versions use Zarr v3 format; "0.4" is deprecated for new stores .
95+ OME-NGFF version for the output Zarr store, by default "0.4 ".
96+ "0.4" uses Zarr v2 format; "0.5" uses Zarr v3 format .
9797 implementation : str, optional
9898 Zarr backend implementation to use for writing.
9999 None (default) uses zarr-python. Pass "tensorstore"
@@ -113,7 +113,7 @@ def __init__(
113113 grid_layout : int = False ,
114114 chunks : tuple [int ] | Literal ["XY" , "XYZ" ] | None = None ,
115115 hcs_plate : bool | None = None ,
116- version : Literal ["0.4" , "0.5" ] = "0.5 " ,
116+ version : Literal ["0.4" , "0.5" ] = "0.4 " ,
117117 implementation : str | None = None ,
118118 ):
119119 self .implementation = implementation
0 commit comments