Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 779 Bytes

deploy.md

File metadata and controls

27 lines (17 loc) · 779 Bytes

Deployment procedures

Follow these steps when deploying a new version to Pypi

  1. Remove .dev tag from version number in dyneusr/_version.py
  2. Add release notes for the new version in RELEASE.txt
  3. 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/*
  1. Check pypi.python.org that the new version is present.
  2. Increment version number in dyneusr/_version.py and give .dev tag.

Notes

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