Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 605 Bytes

DEVELOPMENT.md

File metadata and controls

18 lines (12 loc) · 605 Bytes

General

  • Please follow pep8 to format Python code.

Making a Release

We use Versioneer to automatically update the version string (of a release but also in development). This means for a release a new git tag should be created. The tag should be of the form vX.Y or vX.Y.Z and generally follow pep440 with a prefixed "v".

git tag  -a vX.Y -m "version X.Y"
git push
git push origin --tags
python setup.py sdist upload -r pypi