From 1246fbe0b7763214370e011a8ba4658f43d693e2 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 30 Jan 2026 03:09:54 +0100 Subject: [PATCH 1/2] Ignore linkcheck 403s from docutils.sourceforge.io Signed-off-by: William Woodruff --- source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/source/conf.py b/source/conf.py index ccb828b6e..cd52473ac 100644 --- a/source/conf.py +++ b/source/conf.py @@ -156,6 +156,7 @@ r"https://click\.palletsprojects\.com/.*", r"https://typer\.tiangolo\.com/.*", r"https://www.npmjs.com/.*", + r"https://docutils\.sourceforge\.io/.*", ] linkcheck_retries = 5 # Ignore anchors for common targets when we know they likely won't be found From 1b9e6330c33f954f8e5cd9c732e0a4ba428b4a0e Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 30 Jan 2026 19:09:07 +0100 Subject: [PATCH 2/2] Add another ignore Signed-off-by: William Woodruff --- source/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/conf.py b/source/conf.py index cd52473ac..37d00dd55 100644 --- a/source/conf.py +++ b/source/conf.py @@ -157,6 +157,9 @@ r"https://typer\.tiangolo\.com/.*", r"https://www.npmjs.com/.*", r"https://docutils\.sourceforge\.io/.*", + # Temporarily ignored due to expired TLS cert. + # Ref: https://github.com/pypa/packaging.python.org/issues/1998 + r"https://blog\.ganssle\.io/.*", ] linkcheck_retries = 5 # Ignore anchors for common targets when we know they likely won't be found