From cd1e42fbf7a379177161491dee185958b8ed2f9d Mon Sep 17 00:00:00 2001 From: Vladimir Petko Date: Mon, 9 Sep 2024 17:39:24 +1200 Subject: [PATCH] chore(docs): increment linkcheck retries Set linkcheck retries to 3 to avoid spurious pipeline failures during the linkcheck lint. --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 856d263b1..e903b9d2b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -117,6 +117,8 @@ typehints_document_rtype = True linkcheck_anchors_ignore = ["slice-definitions"] +linkcheck_retries = 3 + # Enable support for google-style instance attributes. napoleon_use_ivar = True