From 3cfd878d347be119650782037dde9ff62f5a41ff Mon Sep 17 00:00:00 2001 From: James Addison Date: Mon, 22 Jul 2024 18:21:11 +0100 Subject: [PATCH] [docs] Sphinx v8 compatibility: configure a non-empty inventory name for Python in `intersphinx_mapping`. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 915dfbd14..1a697a966 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -133,7 +133,7 @@ ogp_site_name = about["__title__"] intersphinx_mapping = { - "": ("https://docs.python.org/", None), + "python": ("https://docs.python.org/", None), "pytest": ("https://docs.pytest.org/en/stable/", None), }