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
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Wed, 6 Mar 2024 19:46:14 +0100
Subject: docs: Don't use external intersphinx
Use objects.inv information from local installed packages.
Forwarded: Not-Needed
---
docs/conf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index ca04180..f83ad65 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -25,8 +25,8 @@ extlinks = {
"pr": ("https://github.com/pallets-eco/flask-debugtoolbar/pull/%s", "#%s"),
}
intersphinx_mapping = {
- "python": ("https://docs.python.org/3/", None),
- "flasksqlalchemy": ("https://flask-sqlalchemy.palletsprojects.com", None),
+ "python": ("/usr/share/doc/python3/html", None),
+ "flasksqlalchemy": ("/usr/share/doc/flask-sqlalchemy-doc/html", None)
}
# HTML -----------------------------------------------------------------
|