From 7728d79aa275c1c24a3d14aec35117f42c3ad1af Mon Sep 17 00:00:00 2001 From: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> Date: Mon, 20 Nov 2023 15:16:31 -0800 Subject: [PATCH 1/2] fix extlinks in conf.py --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index a337b1e6..9f0b8c68 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -82,8 +82,8 @@ def __getattr__(cls, name): } # allows us to easily link PRs and issues in the change log extlinks = { - "issue": ("https://github.com/NCAR/geocat-viz/issues/%s", "GH"), - "pr": ("https://github.com/NCAR/geocat-viz/pull/%s", "PR"), + "issue": ("https://github.com/NCAR/geocat-viz/issues/%s", "GH%s"), + "pr": ("https://github.com/NCAR/geocat-viz/pull/%s", "PR%s"), } # napoleon settings From 950d0fdcbb5032a642cece00442b669b33941a72 Mon Sep 17 00:00:00 2001 From: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> Date: Mon, 20 Nov 2023 15:20:59 -0800 Subject: [PATCH 2/2] update release-notes.rst --- docs/release-notes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 13e575d5..582b0b38 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -16,6 +16,7 @@ Documentation Bug Fixes ^^^^^^^^^ * Remove matplotlib version pin by `Katelyn FitzGerald`_ in (:pr:`177`) +* Fix `extlinks` for compatibility with Sphinx 6 by `Katelyn FitzGerald`_ in (:pr:`180`) v2023.10.0 (October 3, 2023) ----------------------------