1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Author: Diane Trout <diane@ghic.org>
Description: Link to local documentation when possible
Forwarded: no
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -307,9 +307,9 @@
# Configuration for intersphinx: refer to the Python standard library
# and the Numpy documentation.
intersphinx_mapping = {
- 'python': ('https://docs.python.org/3', None),
+ 'python': ('https://docs.python.org/3', '/usr/share/doc/python3-doc/html/objects.inv'),
'numpy': ('https://numpy.org/doc/stable/', None),
- 'llvmlite': ('https://llvmlite.readthedocs.io/en/latest/', None),
+ 'llvmlite': ('https://llvmlite.readthedocs.io/en/latest/', '/usr/share/doc/llvmlite-doc/html/objects.inv'),
}
|