From 291837086e2531a8828bb271dcc6b60b57f93322 Mon Sep 17 00:00:00 2001 From: mattip Date: Mon, 1 Nov 2021 23:08:35 +0200 Subject: [PATCH] DOC: fix intersphinx links --- docs/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index e1fdb9f9ad7..e5b200f4a42 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -199,9 +199,9 @@ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - "python": ("https://docs.python.org/", None), + "python": ("https://docs.python.org/3/", None), "torch": ("https://pytorch.org/docs/stable/", None), - "numpy": ("http://docs.scipy.org/doc/numpy/", None), + "numpy": ("https://numpy.org/doc/stable/", None), "PIL": ("https://pillow.readthedocs.io/en/stable/", None), "matplotlib": ("https://matplotlib.org/stable/", None), }