-
Notifications
You must be signed in to change notification settings - Fork 8
Uploading to PyPI
Giovanni Pizzi edited this page Jan 16, 2024
·
6 revisions
Since I always forget, here are some instructions.
-
pip install twine
(only once) -
create
~/.pypirc
:[distutils] index-servers = pypi pypitest [pypi] username=gio.piz [pypitest] repository=https://testpypi.python.org/pypi username=gio.piz
- First, update
__version__
in the code - create a new tag 'vX.X.X' from the commit in the main branch after ensuring that all tests pass (remember to push the tag as well!)
Then:
-
clear the
build/
,dist
anddisk-objectstore.egg-info
folders -
git fetch --all
andgit checkout vX.Y.Z
(checking out the tag to be sure of the version we are at) -
python setup.py sdist bdist_wheel --universal
-
upload the package
twine upload dist/*
(to test:
pip install disk-objectstore
)
Make sure to also create a new release on GitHub, based on the last tag