1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Author: Michael R. Crusoe <crusoe@debian.org>
Description: Use Debian packages for intersphinx-links
Forwarded: not-needed
--- python-skbio.orig/doc/source/conf.py
+++ python-skbio/doc/source/conf.py
@@ -425,12 +425,12 @@
# Intersphinx configuration
# -----------------------------------------------------------------------------
intersphinx_mapping = {
- 'http://docs.python.org/dev': None,
+ 'http://docs.python.org/dev': '/usr/share/doc/python{}.{}/html/objects.inv'.format(*sys.version_info[:2]),
'http://docs.scipy.org/doc/numpy': None,
- 'http://docs.scipy.org/doc/scipy/reference': None,
+ 'http://docs.scipy.org/doc/scipy/reference': '/usr/share/doc/python-scipy-doc/html/objects.inv',
'http://matplotlib.org': None,
- 'http://pandas.pydata.org/pandas-docs/stable': None,
- 'http://www.biom-format.org':None
+ 'http://pandas.pydata.org/pandas-docs/stable': '/usr/share/doc/python-pandas-doc/html/objects.inv',
+ 'http://www.biom-format.org': '/usr/share/doc/python-biom-format-doc/html/objects.inv'
}
# -----------------------------------------------------------------------------
|