|
57 | 57 | 'sphinx_toggleprompt', |
58 | 58 | 'sphinx_favicon', |
59 | 59 | 'hoverxref.extension', |
60 | | - 'sphinx.ext.intersphinx', |
61 | 60 | ] |
62 | 61 |
|
63 | 62 | mathjax3_config = {'chtml': {'displayAlign': 'left', |
64 | 63 | 'displayIndent': '2em'}} |
65 | 64 |
|
66 | | -# used with hoverxref to link to other projects' documentation not hosted by |
67 | | -# readthedocs |
| 65 | +# Example configuration for intersphinx: refer to the Python standard library. |
68 | 66 | intersphinx_mapping = { |
69 | | - "python": ("https://docs.python.org/3/", None), |
70 | | - "sphinx": ("https://www.sphinx-doc.org/en/master/", None), |
71 | | - "numpy": ("https://numpy.org/doc/stable", None), |
72 | | - "scipy": ("https://docs.scipy.org/doc/scipy", None), |
73 | | - "matplotlib": ("https://matplotlib.org/stable/", None), |
| 67 | + 'python': ('https://docs.python.org/3/', None), |
| 68 | + 'numpy': ('https://numpy.org/doc/stable/', None), |
| 69 | + 'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None), |
| 70 | + 'pandas': ('https://pandas.pydata.org/pandas-docs/stable', None), |
| 71 | + 'matplotlib': ('https://matplotlib.org/stable', None), |
74 | 72 | } |
75 | 73 |
|
76 | 74 | # Enable hover tooltips |
@@ -376,15 +374,6 @@ def setup(app): |
376 | 374 | # If true, do not generate a @detailmenu in the "Top" node's menu. |
377 | 375 | # texinfo_no_detailmenu = False |
378 | 376 |
|
379 | | -# Example configuration for intersphinx: refer to the Python standard library. |
380 | | -intersphinx_mapping = { |
381 | | - 'python': ('https://docs.python.org/3/', None), |
382 | | - 'numpy': ('https://numpy.org/doc/stable/', None), |
383 | | - 'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None), |
384 | | - 'pandas': ('https://pandas.pydata.org/pandas-docs/stable', None), |
385 | | - 'matplotlib': ('https://matplotlib.org/stable', None), |
386 | | -} |
387 | | - |
388 | 377 | ipython_warning_is_error = False |
389 | 378 |
|
390 | 379 | # suppress "WARNING: Footnote [1] is not referenced." messages |
|
0 commit comments