From 13e83df783d00a74b0d13d690f8f96d806646e13 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl <alexfikl@gmail.com> Date: Wed, 26 Apr 2023 14:40:48 +0300 Subject: [PATCH] docs: update intersphinx mapping from deprecated variant --- doc/conf.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 7389af0..bf63d08 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -26,11 +26,10 @@ release = ver_dic["VERSION_TEXT"] exclude_patterns = ["_build"] intersphinx_mapping = { - "https://docs.python.org/3": None, - "https://numpy.org/doc/stable/": None, - "https://docs.makotemplates.org/en/latest/": None, - "https://docs.sympy.org/dev/": None, - "https://galgebra.readthedocs.io/en/latest/": None, - "https://matchpy.readthedocs.io/en/latest/": None, + "galgebra": ("https://galgebra.readthedocs.io/en/latest/", None), + "mako": ("https://docs.makotemplates.org/en/latest/", None), + "matchpy": ("https://matchpy.readthedocs.io/en/latest/", None), + "numpy": ("https://numpy.org/doc/stable/", None), + "python": ("https://docs.python.org/3", None), + "sympy": ("https://docs.sympy.org/dev/", None), } - -- GitLab