From d02d5fa695429bc34ff8493636454b8e0a95ac20 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sat, 19 Jul 2025 14:02:40 +0200 Subject: [PATCH] docs/linkcheck: ignore sourceforge subdomains as well Part-of: --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 0dfeec759b7..61863835b74 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -141,6 +141,7 @@ linkcheck_ignore = [ r'https://github.com/.*#.*', # needs JS eval r'https://www.intel.com/.*', # intel.com is blocking the linkcheck user-agent; maybe it can be customized to look like a browser? r'https://sourceforge.net/.*', # blocking the linkcheck user-agent + r'https://.*\.sourceforge\.net/.*', # blocking the linkcheck user-agent r'https://stackoverflow.com/.*', # blocking the linkcheck user-agent ] linkcheck_exclude_documents = [r'relnotes/.*']