Codebase list onioncircuits / debian/0.5-4 HACKING
debian/0.5-4

Tree @debian/0.5-4 (Download .tar.gz)

HACKING @debian/0.5-4raw · 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
=======

Update translations:

    ~/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"

Tag the release and push

    git tag -m "Release version $VERSION" -s $VERSION
    git push --tags origin/master