From 8d5df52bdfc73ea501ad2fee6a8b829fe1d43913 Mon Sep 17 00:00:00 2001
From: Matthias Diener <mdiener@illinois.edu>
Date: Wed, 14 Aug 2024 13:57:52 -0500
Subject: [PATCH] fix intersphinx mappings

---
 doc/conf.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/conf.py b/doc/conf.py
index 13dcc2c..62eceea 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -26,13 +26,13 @@ release = ver_dic["VERSION_TEXT"]
 exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
 
 intersphinx_mapping = {
-    "loopy": ("https://documen.tician.de/loopy/", None),
+    "loopy": ("https://documen.tician.de/loopy", None),
     "numpy": ("https://numpy.org/doc/stable", None),
-    "pymbolic": ("https://documen.tician.de/pymbolic/", None),
-    "pytest": ("https://docs.pytest.org/en/stable/", None),
-    "setuptools": ("https://setuptools.pypa.io/en/latest/", None),
+    "pymbolic": ("https://documen.tician.de/pymbolic", None),
+    "pytest": ("https://docs.pytest.org/en/stable", None),
+    "setuptools": ("https://setuptools.pypa.io/en/latest", None),
     "python": ("https://docs.python.org/3", None),
-    "platformdirs": ("https://platformdirs.readthedocs.io/en/latest/", None),
+    "platformdirs": ("https://platformdirs.readthedocs.io/en/latest", None),
 }
 
 nitpicky = True
-- 
GitLab