From 51a4475a5879beeedf69808df7442e6f255ae5b2 Mon Sep 17 00:00:00 2001 From: Antonio Torres Date: Thu, 23 Jan 2025 10:31:09 +0100 Subject: [PATCH] doc: fix build error due to outdated intersphinx mapping Newest versions of Sphinx changed the format for the `intersphinx_mapping` option: https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#confval-intersphinx_mapping Now requiring a tuple. Fix this so docs can be built again. Signed-off-by: Antonio Torres --- 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 7d15d8e..52b6260 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -155,4 +155,4 @@ ] # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}