Deploy a new Release¶
This documentation is mainly intended for the main developers. The deployment of new releases is automated using Travis CI. However, there are still a few manual steps required in order to deploy a new release. Assume we want to deploy the new version `M.m.b’:
- Create a release branch release-M.m.b
- Adapt VERSION file in the repos root directiory echo M.m.b > VERSION
- Merge all desired feature branches into the release branch
- Create a pull/ merge request: release branch -> master
After a successfull merge:
- Create tag vM.m.b (git tag vM.m.b) and push the tag (git push –tags)
- Create a release in Github
The new tag on master will signal Travis to deploy a new package to Pypi while the GitHub release is just for user documentation.