File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22
22
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
23
23
# ones.
24
24
extensions = [
25
- # Markdown (MyST) format support for Sphinx
26
- "myst_parser" ,
27
25
# Adds support for NumPy style docstrings for autodoc
26
+ # Note: numpydoc must be listed before myst_parser in order to make the
27
+ # NamedTuples fix (https://github.com/numpy/numpydoc/pull/527) work.
28
28
"numpydoc" ,
29
+ # Markdown (MyST) format support for Sphinx
30
+ "myst_parser" ,
29
31
# Sphinx Design adds some sphinx directives for UI components
30
32
# See: https://sphinx-design.readthedocs.io/
31
33
"sphinx_design" ,
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ doc = [
37
37
" sphinx-copybutton~=0.5.2" ,
38
38
" myst-parser~=2.0.0" ,
39
39
" sphinx-book-theme~=1.1.0" ,
40
- " numpydoc"
40
+ # a numpydoc 1.7.0rc0.dev0. This one has https://github.com/numpy/numpydoc/pull/527 merged
41
+ # At some point: Can use 1.7.0 (which is not available in PyPI at the time of writing)
42
+ " numpydoc @ git+https://github.com/numpy/numpydoc.git@46f532a824639a97479039fc122533915cdfa10f"
41
43
]
42
44
dev = [
43
45
" sphinx-autobuild" ,
You can’t perform that action at this time.
0 commit comments