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 31 32 33 34
|
From: "Michael R. Crusoe" <crusoe@debian.org>
Date: Mon, 1 Feb 2021 11:22:53 +0100
Subject: Use Debian packages for intersphinx-links
Forwarded: not-needed
---
doc/source/conf.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
--- python-skbio.orig/doc/source/conf.py
+++ python-skbio/doc/source/conf.py
@@ -184,14 +184,14 @@
# https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html
intersphinx_mapping = {
- 'python': ('https://docs.python.org/3/', None),
- 'numpy': ('https://numpy.org/doc/stable/', None),
- 'scipy': ('https://docs.scipy.org/doc/scipy/', None),
- 'matplotlib': ('https://matplotlib.org/stable/', None),
- 'pandas': ('https://pandas.pydata.org/pandas-docs/stable/', None),
- 'sklearn': ('https://scikit-learn.org/stable/', None),
- 'statsmodels': ('https://www.statsmodels.org/stable/', None),
- 'biom-format': ('https://biom-format.org/', None)
+ 'python': ('/usr/share/doc/python3/html/', None),
+ 'numpy': ('/usr/share/doc/python-numpy/html/', None),
+ 'scipy': ('/usr/share/doc/python-scipy-doc/html/', None),
+ 'matplotlib': ('/usr/share/doc/python-matplotlib-doc/html/', None),
+ 'pandas': ('/usr/share/doc/python-pandas-doc/html/', None),
+ 'sklearn': ('/usr/share/doc/python-sklearn-doc/html/', None),
+ 'statsmodels': ('/usr/share/doc/python-statsmodels-doc/html/', None),
+ 'biom-format': ('/usr/share/doc/python-biom-format-doc/html/', None)
}
|