From 7dbadb6dcb020ec946f3d60ab250452025cf70c9 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Thu, 19 Dec 2024 17:54:22 +0000 Subject: [PATCH] Fix build with new sphinx ERROR: Invalid value `None` in intersphinx_mapping['http://docs.python.org/']. Expected a two-element tuple or list. --- sphinx/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/conf.py b/sphinx/conf.py index 41fb1fb..6df9e8d 100755 --- a/sphinx/conf.py +++ b/sphinx/conf.py @@ -308,4 +308,4 @@ # 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)}