-
Notifications
You must be signed in to change notification settings - Fork 19
Release Procedures
Jessie Deot edited this page Feb 25, 2019
·
1 revision
Follow the steps below to upload to PyPI
- Make sure your clone is up to date with
pyoblibmaster. - Verify the version number in
setup.py. - Generate distribution archives. From the root directory, run
python3 setup.py sdist bdist_wheel - Install twine -
python3 -m pip install --user --upgrade twine - To test the distribution, upload the distribution archives to test PyPI -
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* - Upload the distribution archives to PyPI -
python3 -m twine upload dist/*