From b62a3978a4464713c4e4b27776122caaa5348504 Mon Sep 17 00:00:00 2001 From: "Mark A. Grondona" Date: Mon, 19 Aug 2024 12:28:50 -0700 Subject: [PATCH] conf.py: Add mpich commit URL to linkcheck ignore list Problem: A linked mpich commit gets "406 Client not acceptable for URL" during linkcheck. Add this URL to the ignore list. --- conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conf.py b/conf.py index 7a52398..6ec0614 100644 --- a/conf.py +++ b/conf.py @@ -66,6 +66,7 @@ linkcheck_ignore = [ "https://help.github.com/en/pull-requests", # 403 Forbidden r"https://blog\.twitter\.com/.*", # 403 Forbidden + r"https://github.com/pmodels/mpich/commit/.*", # 406 client not acceptable ]