From 646351874cbc18bc48244b7d50697d2b9f894814 Mon Sep 17 00:00:00 2001 From: Stephen Kitt <steve@sk2.org> Date: Tue, 17 Dec 2024 12:22:16 +0100 Subject: [PATCH] Fix intersphinx mapping The map is supposed to be a dict of tuples, see https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html Signed-off-by: Stephen Kitt <steve@sk2.org> Part-of: <https://gitlab.freedesktop.org/libevdev/python-libevdev/-/merge_requests/31> --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 456d62a..09241b2 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -264,4 +264,4 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'http://docs.python.org/': None} +intersphinx_mapping = {'python': ('http://docs.python.org/3', None)} -- GitLab