Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 500 Bytes

RELEASING.md

File metadata and controls

11 lines (11 loc) · 500 Bytes
  1. Make sure all changes are live and that Travis is green
  2. Update README.md with release notes
  3. Update setup.py for the new version number
  4. pip install -U twine wheel
  5. python setup.py sdist
  6. python setup.py bdist_wheel
  7. For each file in dist/: gpg2 --detach-sign -a <filename>
  8. twine upload dist/* (or ./twine-upload ../../dist/* if in a venv)
  9. Commit everything for the release
  10. git tag -a vN.N.N
  11. git push git@github.com:brettcannon/caniusepython3.git --tags