From 4f26b5fa0fa8efa97ab45c0983bed2407863827e Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 7 Nov 2022 14:46:27 +0100 Subject: [PATCH] docs: do not linkcheck relnotes There's a *lot* of relnotes, and we don't really actively maintain them. Let's drop linkchecking them to speed things up a bit. This does a whole lot of nothing unless you have Sphinx 4.4 or newer. Reviewed-by: Eric Engestrom Part-of: --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 73d71d9a465..3a712944a1c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -150,6 +150,7 @@ linkcheck_ignore = [ r'https://gitlab.freedesktop.org/.*#.*', # needs JS eval r'https://github.com/.*#.*', # needs JS eval ] +linkcheck_exclude_documents = [r'relnotes/.*'] # -- Options for HTMLHelp output ------------------------------------------