From 2aa8e77d4e0d6d90db71b614e9a2b766293911c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 16 Mar 2022 13:21:12 +0100 Subject: [PATCH] environment: Update default value for pep_base_url This matches docutils change in https://sourceforge.net/p/docutils/code/9045/ Fixes #10253 --- sphinx/environment/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index b5b13524122..07c003b3e0d 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -41,7 +41,7 @@ 'embed_images': False, 'embed_stylesheet': False, 'cloak_email_addresses': True, - 'pep_base_url': 'https://www.python.org/dev/peps/', + 'pep_base_url': 'https://peps.python.org/', 'pep_references': None, 'rfc_base_url': 'https://datatracker.ietf.org/doc/html/', 'rfc_references': None,