From 980fbaed56dae2f8a2e3e68948229518fb9f6d4a Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Sat, 16 Sep 2023 21:29:05 -0400 Subject: [PATCH] fix intersphinx mapping --- 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 4ae5d58..1dd5fac 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -182,6 +182,6 @@ # -- Extension configuration ------------------------------------------------- intersphinx_mapping = { - 'https://docs.python.org/3/': None, - 'https://docs.mdanalysis.org/stable/': None, + "python": ('https://docs.python.org/3/', None), + "mdanalysis": ('https://docs.mdanalysis.org/stable/', None), }