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), +}