File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1+ Document removal of ` zarr.storage.init_group ` in v3 migration guide, with replacement using ` zarr.open_group ` /` zarr.create_group ` .
Original file line number Diff line number Diff line change @@ -114,6 +114,15 @@ The following sections provide details on breaking changes in Zarr-Python 3.
114114 - Use [`zarr.Group.require_array` ][] in place of `zarr.Group.require_dataset`
1151153 . Disallow " ." syntax for getting group members. To get a member of a group named `foo` ,
116116 use `group[" foo" ]` in place of `group.foo` .
117+ 4 . The `zarr.storage.init_group` low- level helper function has been removed. Use
118+ [`zarr.open_group` ][] or [`zarr.create_group` ][] instead:
119+
120+ ```diff
121+ - from zarr.storage import init_group
122+ - init_group(store, overwrite = True , path = " my/path" )
123+ + import zarr
124+ + zarr.open_group(store, mode = " w" , path = " my/path" )
125+ ```
117126
118127### The Store class
119128
You can’t perform that action at this time.
0 commit comments