Skip to content

Developer notes

Uche edited this page May 8, 2018 · 3 revisions

Library.Link developer notes

Preparation

You need Github & PyPI update access.

Release

#Update README.md
vi README.md

#Upload to PyPI
python setup.py sdist #Then check the contents of dist folder
twine upload dist/*

Note: You can test using twine upload --repository-url https://test.pypi.org/legacy/ dist/*

Create release online

Bump version for next release

vi lib/version.py
git commit -am "Bump version"
git push

Clone this wiki locally