@@ -103,7 +103,7 @@ The Array class
103103
1041042. Defaulting to ``zarr_format=3 `` - newly created arrays will use the version 3 of the
105105 Zarr specification. To continue using version 2, set ``zarr_format=2 `` when creating arrays
106- or set ``default_zarr_version=2 `` in Zarr's :ref: `runtime configuration <config >`.
106+ or set ``default_zarr_version=2 `` in Zarr's :ref: `runtime configuration <user-guide- config >`.
107107
108108The Group class
109109~~~~~~~~~~~~~~~
@@ -119,21 +119,25 @@ The Group class
119119The Store class
120120~~~~~~~~~~~~~~~
121121
122- The Store API has changed significant in Zarr-Python 3. The most notable changes to the Store API are:
122+ The Store API has changed significant in Zarr-Python 3. The most notable changes to the
123+ Store API are:
123124
1241251. Replaced the ``MutableMapping `` base class in favor of a custom abstract base class
125126 (:class: `zarr.abc.store.Store `).
1261272. Switched to an asynchronous interface for all store methods that result in IO. This
127128 change ensures that all store methods are non-blocking and are as performant as
128129 possible.
129130
130- Beyond the changes store interface, a number of deprecated stores were also removed in Zarr-Python 3.
131- See :issue: `1274 ` for more details on the removal of these stores.
131+ Beyond the changes store interface, a number of deprecated stores were also removed in
132+ Zarr-Python 3. See :issue: `1274 ` for more details on the removal of these stores.
132133
133- - ``N5Store `` - see https://github.com/zarr-developers/n5py for an alternative interface to N5 formatted data.
134- - ``ABSStore `` - use the :class: `zarr.storage.FsspecStore ` instead along with fsspec's `adlfs backend <https://github.com/fsspec/adlfs >`_.
135- The following stores have been removed altogether. Users who need these stores
136- will have to implement their own version in zarr-python v3.
134+ - ``N5Store `` - see https://github.com/zarr-developers/n5py for an alternative interface to
135+ N5 formatted data.
136+ - ``ABSStore `` - use the :class: `zarr.storage.FsspecStore ` instead along with fsspec's
137+ `adlfs backend <https://github.com/fsspec/adlfs >`_.
138+
139+ The following stores have been removed altogether. Users who need these stores will have to
140+ implement their own version in zarr-python v3.
137141
138142- ``DBMStore ``
139143- ``LMDBStore ``
@@ -162,7 +166,7 @@ Configuration
162166~~~~~~~~~~~~~
163167
164168There is a new configuration system based on `donfig <https://github.com/pytroll/donfig >`_,
165- which can be accessed via :mod: ` zarr.config `.
169+ which can be accessed via `` zarr.config `` (see :ref: ` user-guide-config ` for more information)
166170Configuration values can be set using code like the following:
167171
168172.. code-block :: python
@@ -190,7 +194,7 @@ Miscellaneous
190194 been deprecated in favor of ``zarr_format ``.
191195
192196🚧 Work in Progress 🚧
193- ~~~~~~~~~~~~~~~~~~~~~~
197+ ----------------------
194198
195199Zarr-Python 3 is still under active development, and is not yet fully complete.
196200The following list summarizes areas of the codebase that we expect to build out
0 commit comments