diff options
author | Brad King <brad.king@kitware.com> | 2024-10-26 09:57:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-10-26 10:01:09 (GMT) |
commit | f60b4c553e120ac7aef376bb06c7eea97a404da1 (patch) | |
tree | f3c0360f1330c7d0dbaed0ee8622adf692596239 /Utilities | |
parent | 92272c4a175105a59a37bde333f73171f1a4538f (diff) | |
download | CMake-f60b4c553e120ac7aef376bb06c7eea97a404da1.zip CMake-f60b4c553e120ac7aef376bb06c7eea97a404da1.tar.gz CMake-f60b4c553e120ac7aef376bb06c7eea97a404da1.tar.bz2 |
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.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/Sphinx/conf.py.in | 2 |
1 files changed, 2 insertions, 0 deletions
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 |