From 4d16f97ef3416b7e8b40beb05add1489e82cdab4 Mon Sep 17 00:00:00 2001 From: driazati Date: Mon, 7 Feb 2022 10:28:35 -0800 Subject: [PATCH] [skip ci] Fix scipy intersphinx link Scipy changed their docs recently to be pinned to each release, so we need to update the URL we pass to intersphinx accordingly. Skipping CI on this to unblock other developers but local testing with ```bash python tests/scripts/ci.py docs ``` both showed the same error as CI before this change and no error after. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 702821c470f4..004e903e5ecc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -203,7 +203,7 @@ def git_describe_version(original_version): intersphinx_mapping = { "python": ("https://docs.python.org/{.major}".format(sys.version_info), None), "numpy": ("https://numpy.org/doc/stable", None), - "scipy": ("https://docs.scipy.org/doc/scipy/", None), + "scipy": ("https://docs.scipy.org/doc/scipy-1.8.0/html-scipyorg/", None), "matplotlib": ("https://matplotlib.org/", None), }