From d6c92a0b0d4de455f2fce30c516d6c4ac0681f4f Mon Sep 17 00:00:00 2001 From: Rob Brackett Date: Fri, 29 Sep 2023 12:41:44 -0700 Subject: [PATCH] Fix deprecated intersphinx_mapping format This updates the format for `intersphinx_mapping` to use the actively maintained format. The previous format has been deprecated for a while and is slated to be removed in the next major release of Sphinx. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index b410b01e..cbb6c8be 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -316,5 +316,5 @@ def find_version(*file_paths): # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {"https://docs.python.org/": None} +intersphinx_mapping = {"python": ("https://docs.python.org/3/", None)} html_theme = "alabaster"