Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 691 Bytes

how_to_release.md

File metadata and controls

35 lines (23 loc) · 691 Bytes

Release instructions

  • Follow this instructions to automatically release pergola in the github repository and pypi.
  1. Check that tests are passing:

    python pergola/test/test_all.py 
  2. Update pergola/_version.py with the current version (e.g. 0.2.0)

    __  version__ = "0.2.0"
  3. Tag the version in local

    git tag -a 0.2.0 -m "Version 0.2.0"
  4. Check that the tag is correctly updated in local

    git describe
  5. Push to the GitHub repository:

    git push --follow-tags
  6. Check that the version has been released in (pypi)[https://pypi.org/project/pergola/]