@@ -55,6 +55,11 @@ def open(store: StoreLike = None, mode: str = "a", *, zarr_version=None, path=No
55
55
The zarr protocol version to use. The default value of None will attempt
56
56
to infer the version from `store` if possible, otherwise it will fall
57
57
back to 2.
58
+
59
+ .. warning:: `zarr_version=3` is currently using the experimental Zarr V3
60
+ implementation. This implementation is not in sync with the final specification
61
+ and will be replaced with a spec compliant version in the version 3.0.
62
+
58
63
path : str or None, optional
59
64
The path within the store to open.
60
65
**kwargs
@@ -150,6 +155,11 @@ def save_array(store: StoreLike, arr, *, zarr_version=None, path=None, **kwargs)
150
155
The zarr protocol version to use when saving. The default value of None
151
156
will attempt to infer the version from `store` if possible, otherwise
152
157
it will fall back to 2.
158
+
159
+ .. warning:: `zarr_version=3` is currently using the experimental Zarr V3
160
+ implementation. This implementation is not in sync with the final specification
161
+ and will be replaced with a spec compliant version in the version 3.0.
162
+
153
163
path : str or None, optional
154
164
The path within the store where the array will be saved.
155
165
kwargs
@@ -200,6 +210,11 @@ def save_group(store: StoreLike, *args, zarr_version=None, path=None, **kwargs):
200
210
The zarr protocol version to use when saving. The default value of None
201
211
will attempt to infer the version from `store` if possible, otherwise
202
212
it will fall back to 2.
213
+
214
+ .. warning:: `zarr_version=3` is currently using the experimental Zarr V3
215
+ implementation. This implementation is not in sync with the final specification
216
+ and will be replaced with a spec compliant version in the version 3.0.
217
+
203
218
path : str or None, optional
204
219
Path within the store where the group will be saved.
205
220
kwargs
@@ -282,6 +297,11 @@ def save(store: StoreLike, *args, zarr_version=None, path=None, **kwargs):
282
297
The zarr protocol version to use when saving. The default value of None
283
298
will attempt to infer the version from `store` if possible, otherwise
284
299
it will fall back to 2.
300
+
301
+ .. warning:: `zarr_version=3` is currently using the experimental Zarr V3
302
+ implementation. This implementation is not in sync with the final specification
303
+ and will be replaced with a spec compliant version in the version 3.0.
304
+
285
305
path : str or None, optional
286
306
The path within the group where the arrays will be saved.
287
307
kwargs
@@ -395,6 +415,11 @@ def load(store: StoreLike, zarr_version=None, path=None):
395
415
The zarr protocol version to use when loading. The default value of
396
416
None will attempt to infer the version from `store` if possible,
397
417
otherwise it will fall back to 2.
418
+
419
+ .. warning:: `zarr_version=3` is currently using the experimental Zarr V3
420
+ implementation. This implementation is not in sync with the final specification
421
+ and will be replaced with a spec compliant version in the version 3.0.
422
+
398
423
path : str or None, optional
399
424
The path within the store from which to load.
400
425
0 commit comments