From b8c9ca75ce35a99b95477bca2b11bc148212a542 Mon Sep 17 00:00:00 2001 From: melissawm Date: Tue, 8 Feb 2022 14:00:24 -0300 Subject: [PATCH] MAINT, DOC: Fix SciPy intersphinx link --- doc/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index d1abc6fad274..5b7c2a5e683f 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -297,8 +297,8 @@ def setup(app): # ----------------------------------------------------------------------------- intersphinx_mapping = { 'neps': ('https://numpy.org/neps', None), - 'python': ('https://docs.python.org/dev', None), - 'scipy': ('https://docs.scipy.org/doc/scipy/reference', None), + 'python': ('https://docs.python.org/3', None), + 'scipy': ('https://docs.scipy.org/doc/scipy', None), 'matplotlib': ('https://matplotlib.org/stable', None), 'imageio': ('https://imageio.readthedocs.io/en/stable', None), 'skimage': ('https://scikit-image.org/docs/stable', None),