From c2b875dc2fc38829f0944fba2bc3bc04a0d9106e Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Thu, 2 Oct 2025 16:56:07 -0400 Subject: [PATCH] Set linkcheck_allow_unauthorized to Trie for jira release note links not to break build --- doc/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index 8a7f418609..5f7b3cf372 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -95,6 +95,10 @@ # Allow for flaky links. linkcheck_retries = 3 +# Avoid unauthorized links causing build failures: PYTHON-5585 +linkcheck_allow_unauthorized = True + + # -- Options for extensions ---------------------------------------------------- autoclass_content = "init"