From 7c44cfb3c196f547d351af44e411b43f65819714 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 26 Apr 2023 18:31:29 -0600 Subject: [PATCH] Fix intersphinx (#1130) --- docs/conf.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b02f07e5..7453362d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -159,9 +159,7 @@ texinfo_documents = [ epub_description = "Python Clases Without Boilerplate" -intersphinx_mapping = { - "https://docs.python.org/3": None, -} +intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} # Allow non-local URIs so we can have images in CHANGELOG etc. suppress_warnings = ["image.nonlocal_uri"]