From d8fc8de971a5e8effb34d6d1bdac2c683850c6f8 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 18 Dec 2024 17:24:08 +0000 Subject: [PATCH] Port to Sphinx 8.0 (#1047) --- docs/conf.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index aa82e828..727e3635 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -341,10 +341,10 @@ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - "https://docs.python.org/3": None, - "https://aiohttp.readthedocs.io/en/stable": None, - "https://redis.readthedocs.io/en/latest": None, - # 'https://github.com/aio-libs/aiomcache': None, - "http://cryptography.io/en/latest": None, - "https://pynacl.readthedocs.io/en/latest": None, + "python": ("https://docs.python.org/3", None), + "aiohttp": ("https://aiohttp.readthedocs.io/en/stable", None), + "redis": ("https://redis.readthedocs.io/en/latest", None), + # "aiomcache": ("https://github.com/aio-libs/aiomcache", None), + "cryptography": ("http://cryptography.io/en/latest", None), + "pynacl": ("https://pynacl.readthedocs.io/en/latest", None), }