-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
DOCS: add action items to PR template #18341
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,12 +2,15 @@ | |||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
## PR Checklist | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
- [ ] Has Pytest style unit tests | ||||||||||||||||||||||||||||||||||||||||
- [ ] Code is [Flake 8](http://flake8.pycqa.org/en/latest/) compliant | ||||||||||||||||||||||||||||||||||||||||
- [ ] New features are documented, with examples if plot related | ||||||||||||||||||||||||||||||||||||||||
- [ ] Documentation is sphinx and numpydoc compliant | ||||||||||||||||||||||||||||||||||||||||
- [ ] Added an entry to doc/users/next_whats_new/ if major new feature (follow instructions in README.rst there) | ||||||||||||||||||||||||||||||||||||||||
- [ ] Documented in doc/api/next_api_changes/* if API changed in a backward-incompatible way | ||||||||||||||||||||||||||||||||||||||||
<!-- Please mark any checkboxes that do not apply to this PR as [N/A]. --> | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
- [ ] Has pytest style unit tests (and `pytest` passes). | ||||||||||||||||||||||||||||||||||||||||
- [ ] Is [Flake 8](https://flake8.pycqa.org/en/latest/) compliant (run `flake8` on changed files to check). | ||||||||||||||||||||||||||||||||||||||||
- [ ] New features are documented, with examples if plot related. | ||||||||||||||||||||||||||||||||||||||||
- [ ] Documentation is sphinx and numpydoc compliant (the docs should [build](https://matplotlib.org/devel/documenting_mpl.html#building-the-docs) without error). | ||||||||||||||||||||||||||||||||||||||||
- [ ] Conforms to Matplotlib style conventions (install `flake8-docstrings` and `pydocstyle<4` and run `flake8 --docstring-convention=all`). | ||||||||||||||||||||||||||||||||||||||||
- [ ] New features have an entry in `doc/users/next_whats_new/` (follow instructions in README.rst there). | ||||||||||||||||||||||||||||||||||||||||
- [ ] API changes documented in `doc/api/next_api_changes/` (follow instructions in README.rst there). | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+5
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does it make sense to organize these a bit? Also, I've never run
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For the first two weeks or so of me submitting PRs, the majority of comments on my PRs were from @timhoffm, correcting issues that would have been caught by running this command. If you're already versed in our style guide, then this may not feel necessary, but this command will catch all of that stuff automatically, and I think it will save significant review time to have it here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggest just link the style conventions rather than suggest a specific way of checking adherence. We don't run these tests ourselves, so its pretty confusing to include here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A lot of things are ignored right now, but flake8 linting does run these tests in this manner. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ... learn something new every day! |
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
<!-- | ||||||||||||||||||||||||||||||||||||||||
Thank you so much for your PR! To help us review your contribution, please | ||||||||||||||||||||||||||||||||||||||||
|
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.
don't need the
there
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 think without it it's ambiguous where to find the README.
Also, this language was already there.
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.
Ugh, it's an ambiguous reference & yes can kick that can down to a different PR.
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.
Thanks!