From e5704ed8a30dd8491eb473c58c4cefae6d5e8579 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Fri, 20 Dec 2024 18:00:35 +0000 Subject: [PATCH] Port to Sphinx 8.0 The old `intersphinx_mapping` format has been removed; it must now map identifiers to (target, inventory) tuples. --- doc/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index ddce401..015e8bb 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -198,8 +198,7 @@ # 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)} autoclass_content = "both"