File tree 3 files changed +7
-2
lines changed 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def skip_submodules(
71
71
) -> bool :
72
72
# Skip documenting zarr.codecs submodules
73
73
# 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" ) :
75
75
skip = True
76
76
return skip
77
77
Original file line number Diff line number Diff line change 3
3
Runtime configuration
4
4
=====================
5
5
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
7
7
is based on the `donfig <https://github.com/pytroll/donfig >`_ Python library.
8
8
9
9
Configuration 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
+
1
6
from __future__ import annotations
2
7
3
8
from zarr .core .buffer import Buffer , NDBuffer # noqa: F401
You can’t perform that action at this time.
0 commit comments