From 8e27509c49948e0c0e584d9f25c0339c38d664bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bouysset?= Date: Thu, 24 Oct 2024 22:53:11 +0200 Subject: [PATCH] fix intersphinx_mapping --- docs/conf.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6649708..8fa1155 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -110,12 +110,12 @@ html_static_path = [] # ['_static'] intersphinx_mapping = { - "https://docs.python.org/3/": None, - "https://numpy.org/doc/stable/": None, - "https://docs.mdanalysis.org/stable/": None, - "https://www.rdkit.org/docs/": None, - "https://pandas.pydata.org/docs/": None, - "https://multiprocess.readthedocs.io/en/latest/": None, + "python": ("https://docs.python.org/3/", None), + "numpy": ("https://numpy.org/doc/stable/", None), + "mdanalysis": ("https://docs.mdanalysis.org/stable/", None), + "rdkit": ("https://www.rdkit.org/docs/", None), + "pandas": ("https://pandas.pydata.org/docs/", None), + "multiprocess": ("https://multiprocess.readthedocs.io/en/latest/", None), }