Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 598 Bytes

RELEASING.rst

File metadata and controls

37 lines (24 loc) · 598 Bytes

How To Create Releases

Setup

Add the following to ~/.pypirc file

[distutils]
index-servers =
    pypi

[pypi]
repository = https://pypi.python.org/pypi
username = username
password = xxxyyyzzz

Upload Release

When releasing a new version, the following needs to occur:

  1. Ensure all test via tox pass

  2. Add version Tag

    git tag -a v#.#.#
    git push --tags
  3. Generate and upload the package

    python3 setup.py bdist_wheel upload -r pypi