From f60b4c553e120ac7aef376bb06c7eea97a404da1 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 26 Oct 2024 05:57:02 -0400 Subject: Utilities/Sphinx: Tell linkcheck to not treat timeouts as broken Sphinx 7.3 warns: sphinx/builders/linkcheck.py:86: RemovedInSphinx80Warning: The default value for 'linkcheck_report_timeouts_as_broken' will change to False in Sphinx 8, ... Configure that behavior explicitly. --- Utilities/Sphinx/conf.py.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Utilities/Sphinx/conf.py.in b/Utilities/Sphinx/conf.py.in index 09a7d5a..dca6794 100644 --- a/Utilities/Sphinx/conf.py.in +++ b/Utilities/Sphinx/conf.py.in @@ -103,3 +103,5 @@ linkcheck_allowed_redirects = { r'https://openjdk\.java\.net/jeps/313': r'https://openjdk\.org:443/jeps/313', r'https://www\.sphinx-doc\.org': r'https://www\.sphinx-doc\.org/en/master/', } + +linkcheck_report_timeouts_as_broken = False -- cgit v0.12