From e0721ab26d435b9f2039b73838311f4b78b51508 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Thu, 19 Dec 2024 01:11:38 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 6abeedf..ea780c0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -196,6 +196,6 @@ # 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"