From 7b715bb2c9b726b34d8e119ae4cd666623487c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20D=C3=BCster?= Date: Sun, 22 Oct 2023 20:43:52 +0200 Subject: [PATCH] [docs] Enable intersphinx --- docs/source/conf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index a6091df9..382d8feb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -30,6 +30,7 @@ extensions = [ 'numpydoc', 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', + "sphinx.ext.intersphinx", ] # Add any paths that contain templates here, relative to this directory. @@ -71,5 +72,6 @@ html_sidebars = { html_split_index = True #numpydoc_validation_checks = {"all"} - - +intersphinx_mapping = { + "python": ("https://docs.python.org/3/", None), +}