Releasing clld
==============

- Start devpi

  $ devpi-ctl start all

- Do platform test via tox:

  $ tox -r

  Make sure statement coverage is at 100%::

- Make sure all scaffold tests pass:

  $ ./venvs/clld/clldmpg/build.sh "<prev-rel-no>"

- Update translations (using a py3 env with babel patched for py3 compatibility).

  $ python setup.py compile_catalog

- Change setup.py version to the new version number.

- Bump version number:

  $ git commit -a -m"bumbed version number"

- Create a release tag:

  $ git flow release finish <release number>

- Push to github:

  $ git push origin
  $ git push --tags

- Make sure your system Python has ``setuptools-git`` installed and release to
  PyPI::

  $ ./pypi.sh <release number>

