From 3e19cd45cc15cace7b423e5da05458e55db3a6c0 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sun, 3 Aug 2025 23:54:08 -0400 Subject: [PATCH] Disable linkcheck for www.gnu.org (#2030) --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 1e1c91d73..dab4e79d1 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -147,7 +147,7 @@ sphinx_tabs_valid_builders = ["epub", "linkcheck"] linkcheck_ignore = [ R"https://www.raspberrypi.com/software/", R"http://10\..+", - R"https://gnu.org/", + R"https://www.gnu.org/", ] token = os.environ.get("GITHUB_TOKEN", None)