From 0c9888abb33c3c6c16d707ba2d91b7f096b749fa Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Mon, 29 Aug 2022 14:27:04 -0500 Subject: [PATCH] docs: don't fail on invalid tag urls --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 276d85a52b..d36a231539 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -500,5 +500,7 @@ def setup(app): r'https://doi\.org/10\.31526/.*', # https://doi.org/10.1051/epjconf/x DOI URLs will periodically generate 500 Server Error r'https://doi\.org/10\.1051/epjconf/.*', + # tags for a release won't exist until it is made, but the release notes need to reference them + r' https://github.com/scikit-hep/pyhf/releases/tag/.*', ] linkcheck_retries = 50