From 7aa1ebfed64111b316cb1d890f4e1854a0ab0a57 Mon Sep 17 00:00:00 2001 From: Eric Lunderberg Date: Fri, 20 May 2022 14:42:10 -0500 Subject: [PATCH] [skip ci] Fix scipy intersphinx link Follow-up from https://github.com/apache/tvm/pull/10181, as the URL has changed again in https://github.com/scipy/scipy/pull/16221. From [this comment](https://github.com/scipy/scipy/issues/14267#issuecomment-1034196161), the `html-scipyorg` portion wasn't intended to be part of the URL. This should resolve the HTTP 404 occurring in `Docs: GPU` step (e.g. [here](https://ci.tlcpack.ai/blue/organizations/jenkins/tvm/detail/PR-11269/13/pipeline/405#step-975-log-73)), by accessing `https://docs.scipy.org/doc/scipy-1.8.0/objects.inv` instead of `https://docs.scipy.org/doc/scipy-1.8.0/html-scipyorg/objects.inv` --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index da31c3a4243c..400d959bade6 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-1.8.0/html-scipyorg/", None), + "scipy": ("https://docs.scipy.org/doc/scipy-1.8.0/", None), # "matplotlib": ("https://matplotlib.org/", None), }