From f18f04359028291d7e67742acfc744b691a02ce2 Mon Sep 17 00:00:00 2001 From: Viicos <65306057+Viicos@users.noreply.github.com> Date: Wed, 29 Jan 2025 14:54:00 +0100 Subject: [PATCH] Remove trailing slashes from intersphinx inventory URLs --- peps/conf.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/peps/conf.py b/peps/conf.py index 0bad14e819f..479eb60c757 100644 --- a/peps/conf.py +++ b/peps/conf.py @@ -66,16 +66,16 @@ # Intersphinx configuration (keep this in alphabetical order) intersphinx_mapping = { - "devguide": ("https://devguide.python.org/", None), - "mypy": ("https://mypy.readthedocs.io/en/latest/", None), - "packaging": ("https://packaging.python.org/en/latest/", None), - "py3.11": ("https://docs.python.org/3.11/", None), - "py3.12": ("https://docs.python.org/3.12/", None), - "py3.13": ("https://docs.python.org/3.13/", None), - "py3.14": ("https://docs.python.org/3.14/", None), - "python": ("https://docs.python.org/3/", None), - "trio": ("https://trio.readthedocs.io/en/latest/", None), - "typing": ("https://typing.readthedocs.io/en/latest/", None), + "devguide": ("https://devguide.python.org", None), + "mypy": ("https://mypy.readthedocs.io/en/latest", None), + "packaging": ("https://packaging.python.org/en/latest", None), + "py3.11": ("https://docs.python.org/3.11", None), + "py3.12": ("https://docs.python.org/3.12", None), + "py3.13": ("https://docs.python.org/3.13", None), + "py3.14": ("https://docs.python.org/3.14", None), + "python": ("https://docs.python.org/3", None), + "trio": ("https://trio.readthedocs.io/en/latest", None), + "typing": ("https://typing.readthedocs.io/en/latest", None), } intersphinx_disabled_reftypes = []