##// END OF EJS Templates
Update README.rst
Update README.rst

File last commit:

r24772:c93bece9
r24794:5cc99ebf
Show More
CONTRIBUTING.md
74 lines | 3.0 KiB | text/x-minidsrc | MarkdownLexer
Matthias Bussonnier
add info to contributing.md
r24598 ## Triaging Issues
BinaryCrochet
Proofread & edited section "Triaging Issues"...
r24748 On the IPython repository, we strive to trust users and give them responsibility.
By using one of our bot, any user can close issues or add and remove
Matthias Bussonnier
add info to contributing.md
r24598 labels by mentioning the bot and asking it to do things on your behalf.
BinaryCrochet
Proofread & edited section "Triaging Issues"...
r24748 To close an issue (or PR), even if you did not create it, use the following:
Matthias Bussonnier
add info to contributing.md
r24598
> @meeseeksdev close
Matthias Bussonnier
Take into account Carol Suggestions
r24602 This command can be in the middle of another comments, but must start on its
own line.
Matthias Bussonnier
add info to contributing.md
r24598
Matthias Bussonnier
Take into account Carol Suggestions
r24602 To add labels to an issue, ask the bot to `tag` with a comma separated list of
Matthias Bussonnier
add info to contributing.md
r24598 tags to add:
> @meeseeksdev tag windows, documentation
BinaryCrochet
Proofread & edited section "Triaging Issues"...
r24748 Only already pre-created tags can be added. So far, the list is limited to:
Matthias Bussonnier
Take into account Carol Suggestions
r24602 `async/await`, `backported`, `help wanted`, `documentation`, `notebook`,
`tab-completion`, `windows`
Matthias Bussonnier
add info to contributing.md
r24598
To remove a label, use the `untag` command:
> @meeseeksdev untag windows, documentation
Shashank Kumar
docs(CONTRIBUTING): Minor fix
r24656 We'll be adding additional capabilities for the bot and will share them here
Matthias Bussonnier
Take into account Carol Suggestions
r24602 when they are ready to be used.
Matthias Bussonnier
add info to contributing.md
r24598
MinRK
add CONTRIBUTING.md...
r11489 ## Opening an Issue
When opening a new Issue, please take the following steps:
1. Search GitHub and/or Google for your issue to avoid duplicate reports.
Keyword searches for your error messages are most helpful.
2. If possible, try updating to master and reproducing your issue,
because we may have already fixed it.
Mukesh Bhandarkar
Updating Contributing.md with grammer
r24772 3. Try to include a minimal reproducible test case.
MinRK
add CONTRIBUTING.md...
r11489 4. Include relevant system information. Start with the output of:
python -c "import IPython; print(IPython.sys_info())"
Matthias Bussonnier
Take into account Carol Suggestions
r24602 And include any relevant package versions, depending on the issue, such as
matplotlib, numpy, Qt, Qt bindings (PyQt/PySide), tornado, web browser, etc.
MinRK
add CONTRIBUTING.md...
r11489
## Pull Requests
Some guidelines on contributing to IPython:
* All work is submitted via Pull Requests.
* Pull Requests can be submitted as soon as there is code worth discussing.
Pull Requests track the branch, so you can continue to work after the PR is submitted.
Review and discussion can begin well before the work is complete,
and the more discussion the better.
The worst case is that the PR is closed.
* Pull Requests should generally be made against master
* Pull Requests should be tested, if feasible:
Mukesh Bhandarkar
Updating Contributing.md with grammer
r24772 - bugfixes should include regression tests.
- new behavior should at least get minimal exercise.
Paul Ivanov
mention pr folder in whatsnew and CONTRIBUTING
r12242 * New features and backwards-incompatible changes should be documented by adding
Paul Ivanov
fix links
r12244 a new file to the [pr](docs/source/whatsnew/pr) directory, see [the README.md
there](docs/source/whatsnew/pr/README.md) for details.
Thomas Kluyver
Mention that we don't do cleanup PRs
r20636 * Don't make 'cleanup' pull requests just to change code style.
We don't follow any style guide strictly, and we consider formatting changes
unnecessary noise.
If you're making functional changes, you can clean up the specific pieces of
code you're working on.
MinRK
add CONTRIBUTING.md...
r11489
Paul Ivanov
remove test_pr.py...
r22996 [Travis](http://travis-ci.org/#!/ipython/ipython) does a pretty good job testing
IPython and Pull Requests, but it may make sense to manually perform tests,
MinRK
add CONTRIBUTING.md...
r11489 particularly for PRs that affect `IPython.parallel` or Windows.
For more detailed information, see our [GitHub Workflow](https://github.com/ipython/ipython/wiki/Dev:-GitHub-workflow).