1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Use local intersphinx inventories since no network during build.
Author: Doug Torrance <dtorrance@debian.org>
Forwarded: not-needed
Last-Update: 2024-04-16
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -43,8 +43,8 @@
# Contains mapping the locations and names of other projects that
# should be linked to in this documentation.
intersphinx_mapping = {
- 'python': ('https://docs.python.org/3/', None),
- 'sympy': ('https://docs.sympy.org/latest/', None),
+ 'python': ('/usr/share/doc/python3-doc/html', None),
+ 'sympy': ('../debian/sympy/', None),
}
plot_include_source = True
|