From c688fcbaf60413227fbe5476519c7068d32e7b46 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 25 Apr 2023 10:27:45 -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 fef4b3e..27757cd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -17,7 +17,7 @@ release = version intersphinx_mapping = { - "https://docs.python.org/3/": None, - "https://numpy.org/doc/stable/": None, - "https://documen.tician.de/modepy": None, + "python": ("https://docs.python.org/3/", None), + "numpy": ("https://numpy.org/doc/stable/", None), + "modepy": ("https://documen.tician.de/modepy", None), }