Skip to content

Commit f22370c

Browse files
committed
updated intersphinx_mapping and update of itom sphinx extension (copy from latest version in itom project)
1 parent dfa8f4a commit f22370c

File tree

7 files changed

+972
-424
lines changed

7 files changed

+972
-424
lines changed

mainsite_hidden/source/conf.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,10 @@
203203

204204

205205
# Example configuration for intersphinx: refer to the Python standard library.
206-
intersphinx_mapping = {"http://docs.python.org/": None}
206+
intersphinx_mapping = {
207+
"python": ("https://docs.python.org/3", None),
208+
"numpy": ("https://numpy.org/doc/stable", None),
209+
"scipy": ("https://docs.scipy.org/doc/scipy", None),
210+
"matplotlib": ("https://matplotlib.org", None),
211+
"pandas": ("https://pandas.pydata.org/docs/", None),
212+
}

mainsite_hidden/source_plugins/conf.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@
388388

389389

390390
intersphinx_mapping = {
391-
"python": ("https://docs.python.org/3.6", None),
392-
"numpy": ("https://docs.scipy.org/doc/numpy", None),
393-
"scipy": ("https://docs.scipy.org/doc/scipy/reference", None),
391+
"python": ("https://docs.python.org/3", None),
392+
"numpy": ("https://numpy.org/doc/stable", None),
393+
"scipy": ("https://docs.scipy.org/doc/scipy", None),
394+
"matplotlib": ("https://matplotlib.org", None),
395+
"pandas": ("https://pandas.pydata.org/docs/", None),
394396
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__version__ = "0.7.0"
2+
3+
from .numpydoc import setup

0 commit comments

Comments
 (0)