Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 564 Bytes

RELEASING.md

File metadata and controls

28 lines (19 loc) · 564 Bytes

Deploying

  1. Make sure you've merged all the pull requests you care to include in this release and ensure you're on the master branch.

    git checkout master
    
  2. Use bumpversion to increment the version number. This will generate a tag and a commit.

    bumpversion minor
    
  3. Push the tag and commit to GitHub so everyone can see it.

    git push origin master
    
  4. Pushing the tag will trigger a GitHub Action process that will send the tag to pypi.

    git push --tags
    
  5. Done!