From d5c4cac0f4cc2f558099a55686ddb2e0bdc2dbd1 Mon Sep 17 00:00:00 2001 From: Nick Watts Date: Sat, 25 Jan 2020 18:19:22 -0500 Subject: [PATCH] Fix intersphinx_mapping config for Python standard library --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index c13b05e7..eb556a81 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -381,6 +381,6 @@ epub_exclude_files = ["search.html"] # epub_use_index = True intersphinx_mapping = { - "python": ("https://requests.readthedocs.io/en/master/", None), + "python": ("https://docs.python.org/3/", None), "urllib3": ("https://urllib3.readthedocs.io/en/latest", None), }