Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Latest commit

 

History

History
22 lines (18 loc) · 569 Bytes

UPLOAD.md

File metadata and controls

22 lines (18 loc) · 569 Bytes

How To Upload A New Version of rtwo

Update the Version

Edit the rtwo/version.py module and change the appropriate integer in the VERSION line to reflect the changes made.

VERSION = (major_change, minor_change, patch_change, 'dev', 0)

Create the distributables

In the setup.py command sdist results in tarball, and bdist_wheel a wheel file.

pip install -r requirements.txt
python setup.py sdist bdist_wheel

Upload packages (PYPI login required)

pip install twine
twine upload <path to tar.gz> <path to .whl>