-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
DOC: Add bug report reqs and template to contributing guide #7701
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Sync bug report info in contributing.rst with issue template
- Loading branch information
commit f6a3178777082c1d2608aef3d89d490a581a58b3
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,39 @@ | ||
To help us understand and resolve your issue please check that you have provided | ||
the information below. | ||
the information that corresponds to the type of issue that you are submitting. You can feel free to delete the sections that do not apply to your issue. | ||
|
||
###Bug report | ||
|
||
**Bug summary** | ||
|
||
- [ ] A short 1-2 sentences that succinctly describes the bug | ||
|
||
**Code for reproduction** | ||
|
||
- [ ] A minimum code snippet required to reproduce the bug, also minimizing the number of dependencies required | ||
|
||
```python | ||
# Paste your code here | ||
# | ||
# | ||
``` | ||
< 8000 /td> |
|
|
**Actual outcome** | ||
|
||
- [ ] The output produced by the above code, which may be a screenshot, console output, etc. | ||
|
||
``` | ||
# If applicable, paste the console output here | ||
# | ||
# | ||
``` | ||
|
||
**Expected outcome** | ||
|
||
- [ ] A description of the expected outcome from the code snippet | ||
- [ ] If this used to work in an earlier version of Matplotlib, please note the version it used to work on | ||
|
||
**Matplotlib version** | ||
|
||
- [ ] Matplotlib version, Python version and Platform (Windows, OSX, Linux ...) | ||
- [ ] How did you install Matplotlib and Python (pip, anaconda, from source ...) | ||
- [ ] If possible please supply a [Short, Self Contained, Correct, Example](http://sscce.org/) | ||
that demonstrates the issue i.e a small piece of code which reproduces the issue | ||
and can be run with out any other (or as few as possible) external dependencies. | ||
- [ ] If this is an image generation bug attach a screenshot demonstrating the issue. | ||
- [ ] If this is a regression (Used to work in an earlier version of Matplotlib), please | ||
note where it used to work. | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Wrap at 80 here too.