Skip to content

Releasing

Waldemar Quevedo edited this page Sep 9, 2020 · 4 revisions
  • Get a pypi account
  • Configure ~/.pypirc with your creds
[distutils]
index-servers =
    pypi

[pypi]
username:user
password:password
  • Checkout a tagged release then do the upload using `twine`
python3.8 setup.py sdist
python3.8 -m twine upload dist/asyncio-nats-client-X.Y.Z.tar.gz
Clone this wiki locally