Follow these steps when deploying a new version to Pypi
- Remove
.devtag from version number indyneusr/_version.py - Add release notes for the new version in
RELEASE.txt - Run the following commands to upload the new version to pypi
pip install -U twine wheel
python setup.py sdist bdist_wheel
twine upload dist/*
- Check pypi.python.org that the new version is present.
- Increment version number in
dyneusr/_version.pyand give.devtag.
We use semver for versioning as best as we know how. The current working development should be labeled with a .dev tag.
Helpful instructions can be found here