Codebase list onioncircuits / upstream/0.4+git20170625.0.ce92de8 HACKING
upstream/0.4+git20170625.0.ce92de8

Tree @upstream/0.4+git20170625.0.ce92de8 (Download .tar.gz)

HACKING @upstream/0.4+git20170625.0.ce92de8raw · history · blame

Coding style
============

Please follow PEP-8 "Style Guide for Python Code"[1] and be consistent with
current code when proposing patches. Explicit variables names are preferred,
even if they are longer.

[1]. https://www.python.org/dev/peps/pep-0008/


Release
=======

~/path/to/tails/git/import-translations && \
rm -f po/*.po~ && \
git add po/*.po po/*.pot && \
git commit po -m 'Update POT and PO files.'

Edit setup.py to increment "version=" field to $VERSION

git add setup.py

git commit -m "Bump version to $VERSION"

git tag -m "Release version $VERSION" -s $VERSION

git push --tags origin/master