From 566248a2d8a95d3740045ea314eb3232d52944da Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 21 Dec 2022 09:59:27 +0100 Subject: [PATCH] Don't linkcheck tree links --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 87e0b586..ef5c4197 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,6 +18,8 @@ from attr import define, frozen, field, validators, Factory linkcheck_ignore = [ # We run into GitHub's rate limits. r"https://github.com/.*/(issues|pull)/\d+", + # Rate limits and the latest tag is missing anyways on release. + "https://github.com/python-attrs/attrs/tree/.*", # It never finds the anchor even though it's there. "https://github.com/microsoft/pyright/blob/main/specs/" "dataclass_transforms.md#attrs",