From fa088f8e0a865c4509e12f068420b039193e313a 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/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 21e7a789..8cad968b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -299,7 +299,7 @@ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - '': ('https://docs.python.org/', None), + 'python': ('https://docs.python.org/', None), 'es-py': ('https://elasticsearch-py.readthedocs.io/en/master/', None) , 'es-dsl': ('https://elasticsearch-dsl.readthedocs.io/en/latest/', None), }