##// END OF EJS Templates
remove another py2 only test
remove another py2 only test

File last commit:

r22898:25edc75e
r22962:c05c1799
Show More
index.rst
56 lines | 1.4 KiB | text/x-rst | RstLexer
Carol Willing
Add a core dev section to docs
r22022 .. _core_developer_guide:
Min RK
minor docs updates...
r22658 =================================
Guide for IPython core Developers
=================================
Carol Willing
Add a core dev section to docs
r22022
Min RK
minor docs updates...
r22658 This guide documents the development of IPython itself. Alternatively,
Carol Willing
Fix up rst formatting
r22030 developers of third party tools and libraries that use IPython should see the
:doc:`../development/index`.
Carol Willing
Add a core dev section to docs
r22022
Matthias Bussonnier
Sum documentation improvement from Mike getting-started session.
r22641
Min RK
minor docs updates...
r22658 For instruction on how to make a developer install see :ref:`devinstall`.
Carol Willing
Add a core dev section to docs
r22022
.. toctree::
:maxdepth: 1
release_process
Matthias Bussonnier
Sum documentation improvement from Mike getting-started session.
r22641
Matthias Bussonnier
Document how to backport
r22898 Backporting Pull requests
-------------------------
All pull requests should usually be made against ``master``, if a Pull Request
need to be backported to an earlier release; then it should be tagged with the
correct ``milestone``. We then use `ghpro <https://pypi.python.org/pypi/ghpro>`
to automatically list and apply the PR on other branches. For example:
.. code-block:: bash
$ backport-pr todo --milestone 5.2
[...snip..]
The following PRs have been backported
9848
9851
9953
9955
The following PRs should be backported:
9417
9863
9925
9947
$ backport-pr apply 5.x 9947
[...snip...]
Matthias Bussonnier
Sum documentation improvement from Mike getting-started session.
r22641 Old Documentation
=================
Min RK
minor docs updates...
r22658 Out of date documentation is still available and have been kept for archival purposes.
Matthias Bussonnier
Sum documentation improvement from Mike getting-started session.
r22641
Matthias Bussonnier
Mark the wiki more-explicitely as being out of date....
r22711 .. note::
Developers documentation used to be on the IPython wiki, but are now out of
date. The wiki is though still available for historical reasons: `Old IPython
GitHub Wiki. <https://github.com/ipython/ipython/wiki/Dev:-Index>`_