File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 5151issues_github_path = "zarr-developers/zarr-python"
5252
5353autoapi_dirs = ['../src/zarr' ]
54- autoapi_add_toctree_entry = False
54+ autoapi_add_toctree_entry = True
5555autoapi_generate_api_docs = True
5656autoapi_member_order = "groupwise"
5757autoapi_root = "api"
@@ -68,10 +68,7 @@ def skip_submodules(
6868 ) -> bool :
6969 # Skip documenting zarr.codecs submodules
7070 # codecs are documented in the main zarr.codecs namespace
71- # TODO: just document everything instead using this weak case-by-case logic
72- if what == "module" and name .startswith ("zarr.core.dtype." ):
73- skip = False
74- elif what == "module" and name .startswith ("zarr.codecs." ) or name .startswith ("zarr.core" ):
71+ if what == "module" and name .startswith ("zarr.codecs." ) or name .startswith ("zarr.core" ):
7572 skip = True
7673 return skip
7774
You can’t perform that action at this time.
0 commit comments