1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Tue, 07 Jan 2020 20:12:00 +0100
Description: Work around failure in sphinx doc processing
Forwarded: not-needed
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -31,17 +31,18 @@ add_module_names = False # don't includ
numpydoc_class_members_toctree = False
extensions = [
- "jupyter_sphinx",
+# "jupyter_sphinx",
"nbsphinx",
- "numpydoc",
+# "numpydoc",
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.doctest",
"sphinx.ext.githubpages",
"sphinx.ext.mathjax",
"sphinx.ext.todo",
- "sphinx_gallery.load_style",
- "sphinx_panels",
+# "sphinx_gallery.load_style",
+# "sphinx_panels",
+ "sphinx.ext.napoleon",
# "sphinxcontrib.spelling",
]
|