From e26a80d90273e95c7e76e0ffa5efd2b40b717fa5 Mon Sep 17 00:00:00 2001 From: Alicja Kario Date: Tue, 25 Feb 2025 13:25:31 +0100 Subject: [PATCH] fix doc building with new sphinx --- docs/source/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0581c1c9..d86ea492 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,9 @@ html_static_path = ["_static"] # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {"https://docs.python.org/": None} +intersphinx_mapping = { + "python": ("https://docs.python.org/", None), +} autodoc_default_options = { "undoc-members": True,