Skip to content

Commit 04f7922

Browse files
committed
Merge branch 'main' of https://github.com/zarr-developers/zarr-python into feat/batch-creation
2 parents 0912ecb + 22ebded commit 04f7922

File tree

23 files changed

+120
-2386
lines changed

23 files changed

+120
-2386
lines changed

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

@@ -105,10 +105,10 @@ def skip_submodules(
105105
"license": "https://github.com/zarr-developers/zarr-python/blob/main/LICENSE.txt",
106106
"tutorial": "user-guide",
107107
"getting-started": "quickstart",
108-
"release": "developers/release.html",
109108
"roadmap": "developers/roadmap.html",
110109
"installation": "user-guide/installation.html",
111-
"api": "api/zarr/index"
110+
"api": "api/zarr/index",
111+
"release": "release-notes"
112112
}
113113

114114
# The language for content autogenerated by Sphinx. Refer to documentation

docs/developers/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ and functions are included in the API documentation, under the ``docs/api`` fold
213213
using the `autodoc <https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html>`_
214214
extension to sphinx. Any new features or important usage information should be included in the
215215
user-guide (``docs/user-guide``). Any changes should also be included in the release
216-
notes (``docs/developers/release.rst``).
216+
notes (``docs/release-notes.rst``).
217217

218218
The documentation can be built locally by running::
219219

docs/developers/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ Developer's Guide
66
:maxdepth: 1
77

88
contributing
9-
release
109
roadmap

0 commit comments

Comments
 (0)