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: Colin Watson <cjwatson@debian.org>
Date: Fri, 20 Dec 2024 17:54:34 +0000
Subject: Port to Sphinx 8.0
The old `intersphinx_mapping` format has been removed; it must now map
identifiers to (target, inventory) tuples.
Bug-Debian: https://bugs.debian.org/1090164
Last-Update: 2024-12-20
---
docs/source/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/source/conf.py b/docs/source/conf.py
index e106a33..30504c2 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -192,7 +192,7 @@ latex_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'http://docs.python.org/': None}
+intersphinx_mapping = {'python': ('http://docs.python.org/', None)}
# Autodoc config
autoclass_content = "both"
|