Skip to content

Commit

Permalink
Fix markdownism that made it into docs/developing.rst.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Feb 22, 2015
1 parent 665c69b commit 2e29914
Showing 1 changed file with 33 additions and 32 deletions.
65 changes: 33 additions & 32 deletions docs/developing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,35 +13,36 @@ This release checklist is based on the `Pocoo Release Management Workflow
This assumes ``~/.pypirc`` file exists with the following fields (variations)
are fine.

```
[distutils]
index-servers =
pypi
test

[pypi]
username:<username>
password:<password>

[test]
repository:https://testpypi.python.org/pypi
username:<username>
password:<password>
```

* Review ``git status`` for missing files.
* Verify the latest Travis CI builds pass.
* ``make clean && make lint && make test``
* Update version info in ``planemo/__init__.py`` (drop ``.dev0`` suffix).
* Update release date and description in ``HISTORY.rst``.
* ``make docs`` and review changelog.
* ``git commit``
* ``make release-test``
* Review `Test PyPI <https://testpypi.python.org/pypi/planemo>`_ for errors (install with ``pip install -i https://testpypi.python.org/pypi planemo``).
* ``make release``
* ``git tag <release>``
* Update version info in ``planemo/__init__.py`` (n+1.dev0).
* ``git commit``
* ``git push origin``
* ``git push --tags origin``
* Update planemo homebrew recipe to new version.
::

[distutils]
index-servers =
pypi
test
[pypi]
username:<username>
password:<password>
[test]
repository:https://testpypi.python.org/pypi
username:<username>
password:<password>


* Review ``git status`` for missing files.
* Verify the latest Travis CI builds pass.
* ``make clean && make lint && make test``
* Update version info in ``planemo/__init__.py`` (drop ``.dev0`` suffix).
* Update release date and description in ``HISTORY.rst``.
* ``make docs`` and review changelog.
* ``git commit``
* ``make release-test``
* Review `Test PyPI <https://testpypi.python.org/pypi/planemo>`_ for errors (install with ``pip install -i https://testpypi.python.org/pypi planemo``).
* ``make release``
* ``git tag <release>``
* Update version info in ``planemo/__init__.py`` (n+1.dev0).
* ``git commit``
* ``git push origin``
* ``git push --tags origin``
* Update planemo homebrew recipe to new version.

0 comments on commit 2e29914

Please sign in to comment.