-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[doc] Add a check for changelogs and fix the issues encountered #6735
[doc] Add a check for changelogs and fix the issues encountered #6735
Conversation
@@ -658,7 +658,7 @@ Release date: 2006-08-10 | |||
* started a reference user manual |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not touching this file (unless it's a global sed) because it's a mix between Logilab's internal and bitbucket. Hard to tell, probably dead link anyway, and not very useful generally.
Pull Request Test Coverage Report for Build 2419895913
π - Coveralls |
script/check_changelog.py
Outdated
from pathlib import Path | ||
from re import Pattern | ||
|
||
ISSUE_NUMBER_PATTERN = re.compile(r"#\d{1,5}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't we reuse this pattern in the other patterns?
ISSUE_NUMBER_PATTERN = re.compile(r"#\d{1,5}") | |
ISSUE_NUMBER_PATTERN = re.compile(r"#\d+") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see you're an optimist π
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But I think it's a good test to keep 5, if we have a ticket going above 99999 in pylint it(s probably wrong. (Logilab's issue are above 100k for example.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still, let's reuse the pattern so if we ever need to change it that's just in one place.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in 9a60d73 with some bonus modularity
3811b57
to
690713c
Compare
π€ Effect of this PR on checked open source code: π€ Effect on pandas:
The following messages are no longer emitted:
|
bee1dd3
to
dcb9aa0
Compare
11f7001
to
91cbfb9
Compare
4e353c0
to
02f3e44
Compare
] | ||
|
||
NO_CHECK_REQUIRED_FILES = { | ||
"index.rst", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't these be excluded in pre-commit? Feels a bit weird to exclude them here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a function to select the file we want to check (sorted_whatsnew) and we're launching on the whole repository. The function has verbose log to troubleshoot, I'd rather keep that than to have to use an elaborate exclude regex. Also later on we could want to check that it's in the "right" file according to pylint's version and we need to have information about the whole repo and the other files to do that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, doesn't it make more sense to let this accept a files
argument? That's how most of the linting, formatting, etc. tools work
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does the job, we won't use it that much (when we modify the old changelog), it's not perfect but I don't see the point in refactoring it to perfection right now as it's blocking 2.14. Let's refactor it if we're going to keep the
* blabla
Closes #5445345
format in #6688 (I.e. after 2.14). Right now I think * blabla (#123456789)
with 123456789 being the PR number and not the issue number would be better, which means we would delete this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also see #6781, if we auto-generate the changelog we won't need it either
Type of Changes
Description
Refs #6688