From 56db422cff58aac5ee3c91bd2db9ba952361d5d7 Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Sun, 31 May 2026 10:08:48 -0400 Subject: [PATCH 1/3] try some more linkcheck options --- Docs/source/conf.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Docs/source/conf.py b/Docs/source/conf.py index 132bfb2907..115d32e176 100644 --- a/Docs/source/conf.py +++ b/Docs/source/conf.py @@ -226,9 +226,18 @@ def get_version(): linkcheck_retries = 3 linkcheck_timeout = 100 linkcheck_allow_unauthorized = True +linkcheck_workers = 5 +linkcheck_rate_limit_timeout = 60 linkcheck_ignore = [r"https://doi.org/10.1103/[Pp]hys[Rr]ev*"] -user_agent = "Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0" - +user_agent = "Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0" +linkcheck_request_headers = { + "*": { + "User-Agent": ( + "Mozilla/5.0 (X11; Linux x86_64; rv:120.0) " + "Gecko/20100101 Firefox/120.0" + ) + } +} # -- Options for Texinfo output ------------------------------------------- From 0e9d464224387d7a66731290637d9632ce8fc290 Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Mon, 1 Jun 2026 09:43:14 -0400 Subject: [PATCH 2/3] fix --- Docs/source/conf.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Docs/source/conf.py b/Docs/source/conf.py index 27e1e8a422..fabd99839b 100644 --- a/Docs/source/conf.py +++ b/Docs/source/conf.py @@ -241,8 +241,6 @@ def get_version(): linkcheck_ignore = [r"https://doi.org/10.1103/[Pp]hys[Rr]ev*", "https://www.sciencedirect.com/science/article/pii/S016892741200133X"] ->>>>>>> development - # -- Options for Texinfo output ------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples From 42d19f90bbf3110ab5d6d30377909cde5f5f8dfe Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Mon, 1 Jun 2026 09:59:13 -0400 Subject: [PATCH 3/3] more ignores --- Docs/source/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Docs/source/conf.py b/Docs/source/conf.py index fabd99839b..eefd480833 100644 --- a/Docs/source/conf.py +++ b/Docs/source/conf.py @@ -239,7 +239,9 @@ def get_version(): } } linkcheck_ignore = [r"https://doi.org/10.1103/[Pp]hys[Rr]ev*", - "https://www.sciencedirect.com/science/article/pii/S016892741200133X"] + "https://www.sciencedirect.com/science/article/pii/S016892741200133X", + "https://doi.org/10.1145/641876.641877", + "https://doi.org/10.1137/S1064827597326651"] # -- Options for Texinfo output -------------------------------------------