Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 630 Bytes

how-to-release.rst

File metadata and controls

48 lines (29 loc) · 630 Bytes

How to release

Testing

  • cd to the root of project and run

    make test
    
  • Or, to test in all environments

    tox
    
  • Once all the tests pass move on

Tagging

Check out the master branch, tag with the version number & push the tags

git checkout master
git tag -a v0.1.0 -m 'Version: 0.1.0'
git push upstream --tags

Note the v before the version number.

Release

  • Make sure your .pypirc file is setup correctly.

    cat ~/.pypirc
    
  • Release

    make release