File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def skip_submodules(
7171 ) -> bool :
7272 # Skip documenting zarr.codecs submodules
7373 # codecs are documented in the main zarr.codecs namespace
74- if what == "module" and name .startswith ("zarr.codecs." ):
74+ if what == "module" and name .startswith ("zarr.codecs." ) or name . startswith ( "zarr.core" ) :
7575 skip = True
7676 return skip
7777
Original file line number Diff line number Diff line change 33Runtime configuration
44=====================
55
6- :mod: ` zarr.config <zarr.core.config> ` is responsible for managing the configuration of zarr and
6+ `` zarr.config ` ` is responsible for managing the configuration of zarr and
77is based on the `donfig <https://github.com/pytroll/donfig >`_ Python library.
88
99Configuration values can be set using code like the following::
Original file line number Diff line number Diff line change 1+ """
2+ The ``zarr.core`` module is considered private API and should not be imported
3+ directly by 3rd-party code.
4+ """
5+
16from __future__ import annotations
27
38from zarr .core .buffer import Buffer , NDBuffer # noqa: F401
You can’t perform that action at this time.
0 commit comments