From bef8c208607e3f93026f80377a9508069185af63 Mon Sep 17 00:00:00 2001 From: Isuru Fernando <isuruf@gmail.com> Date: Mon, 24 Apr 2023 20:06:35 -0500 Subject: [PATCH] Use Sphinx 1+ syntax for mapping --- doc/conf.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 5dcae4e4..2de72f53 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -16,16 +16,16 @@ version = ".".join(str(x) for x in ver_dic["VERSION"]) release = ver_dic["VERSION_TEXT"] intersphinx_mapping = { - "https://docs.python.org/3/": None, - "https://numpy.org/doc/stable/": None, - "https://documen.tician.de/modepy/": None, - "https://documen.tician.de/pyopencl/": None, - "https://documen.tician.de/pymbolic/": None, - "https://documen.tician.de/loopy/": None, - "https://documen.tician.de/pytential/": None, - "https://documen.tician.de/boxtree/": None, - "https://docs.sympy.org/latest/": None, - "https://matplotlib.org/stable/": None, + "python": ("https://docs.python.org/3/", None), + "numpy": ("https://numpy.org/doc/stable/", None), + "modepy": ("https://documen.tician.de/modepy/", None), + "pyopencl": ("https://documen.tician.de/pyopencl/", None), + "pymbolic": ("https://documen.tician.de/pymbolic/", None), + "loopy": ("https://documen.tician.de/loopy/", None), + "pytential": ("https://documen.tician.de/pytential/", None), + "boxtree": ("https://documen.tician.de/boxtree/", None), + "sympy": ("https://docs.sympy.org/latest/", None), + "matplotlib": ("https://matplotlib.org/stable/", None), } nitpick_ignore_regex = [ -- GitLab