From 7207c7c5f4f1812919b3774ed87ae66bb45fa0ef Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Fri, 20 Dec 2024 02:32:43 +0000 Subject: [PATCH] fix: Port to Sphinx 8.0 The old `intersphinx_mapping` format has been removed; it must now map identifiers to (target, inventory) tuples. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index aced5d30..ecc295d2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -179,4 +179,4 @@ # -- Options for intersphinx extension --------------------------------------- # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {"https://docs.python.org/3/": None} +intersphinx_mapping = {"python": ("https://docs.python.org/3/", None)}