We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a2bae commit 3811b57Copy full SHA for 3811b57
script/check_changelog.py
@@ -22,6 +22,10 @@
22
VALID_ISSUE_NUMBER_PATTERN: Pattern[str] = re.compile(r"\*[\S\s]*?#\d{1,5}")
23
PATH_TO_WHATSNEW = (Path(__file__).parent / "../doc/whatsnew").resolve()
24
UNCHECKED_VERSION = [
25
+ # Not checking version prior to 1.0.0 because the issues referenced are a mix
26
+ # between Logilab's internal and bitbucket. It's hard to tell, it's
27
+ # inaccessible for Logilab and often dead links for bitbucket anyway.
28
+ # Not very useful generally, unless you're an open source historian.
29
"0",
30
]
31
0 commit comments