We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec6b37f commit 114af68Copy full SHA for 114af68
1 file changed
doc/manual/source/conf.py
@@ -31,8 +31,11 @@
31
32
# Add any Sphinx extension module names here, as strings. They can be extensions
33
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
34
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx',
35
- 'sphinx.ext.napoleon']
+extensions = [
+ 'sphinx.ext.autodoc',
36
+ 'sphinx.ext.napoleon',
37
+ 'sphinx.ext.intersphinx',
38
+]
39
40
# Add any paths that contain templates here, relative to this directory.
41
templates_path = ['_templates']
@@ -262,4 +265,7 @@
262
265
263
266
264
267
# Example configuration for intersphinx: refer to the Python standard library.
-# intersphinx_mapping = {'http://docs.python.org/': None}
268
+intersphinx_mapping = {
269
+ 'numpy': ('https://docs.scipy.org/doc/numpy', None),
270
+ 'python' : ('https://docs.python.org/3.7', None),
271
+}
0 commit comments