From a6e77f50d8a9f15eecab4661d6fdd493850cae85 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 30 Apr 2023 14:47:49 -0500 Subject: [PATCH] Fix intersphinx mapping format --- doc/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 30186ba..0da73a1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -17,7 +17,7 @@ release = version intersphinx_mapping = { - "https://docs.python.org/dev": None, - "https://numpy.org/doc/stable": None, - "https://documen.tician.de/cgen": None, + "python": ("https://docs.python.org/dev", None), + "numpy": ("https://numpy.org/doc/stable", None), + "cgen": ("https://documen.tician.de/cgen", None), }