From aa7a2c973fa87e7a53372f467f4b4553532b488e Mon Sep 17 00:00:00 2001 From: Du Phan Date: Wed, 15 Nov 2023 19:53:26 -0500 Subject: [PATCH] fix intersphinx issues --- 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 1a6e68a5c..66091fcda 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -315,7 +315,7 @@ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { "python": ("https://docs.python.org/3/", None), - "numpy": ("http://docs.scipy.org/doc/numpy/", None), + "numpy": ("https://numpy.org/doc/stable/", None), "jax": ("https://jax.readthedocs.io/en/latest/", None), - "pyro": ("http://docs.pyro.ai/en/stable/", None), + "pyro": ("https://docs.pyro.ai/en/stable/", None), }