Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def skip_submodules(
) -> bool:
# Skip documenting zarr.codecs submodules
# codecs are documented in the main zarr.codecs namespace
if what == "module" and name.startswith("zarr.codecs."):
if what == "module" and name.startswith("zarr.codecs.") or name.startswith("zarr.core"):
skip = True
return skip

Expand Down
5 changes: 5 additions & 0 deletions src/zarr/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
The ``zarr.core`` module is considered private API and should not be imported
directly by 3rd-party code.
"""

from __future__ import annotations

from zarr.core.buffer import Buffer, NDBuffer # noqa: F401
Expand Down
Loading