1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Author: Michael R. Crusoe <crusoe@debian.org>
Description: Fix intersphinx links to point to the packaged documentation.
Forwarded: not-needed
--- brian.orig/docs_sphinx/conf.py
+++ brian/docs_sphinx/conf.py
@@ -315,10 +315,10 @@
intersphinx_mapping = {
- 'python': ('https://docs.python.org/3', None),
- 'numpy' : ('https://numpy.org/doc/stable', None),
- 'scipy' : ('https://docs.scipy.org/doc/scipy', None),
- 'sympy' : ('https://docs.sympy.org/dev/', None)
+ 'python': ('/usr/share/doc/python3-doc/html/', None),
+ 'numpy' : ('/usr/share/doc/python-numpy/html/', None),
+ 'scipy' : ('/usr/share/doc/python-scipy-doc/html/', None),
+ 'sympy' : ('/usr/share/doc/python-sympy-doc/html/', None)
}
autodoc_default_options = {'show-inheritance': True}
|