Skip to content

Releasing

Waldemar Quevedo edited this page Sep 1, 2022 · 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 -m pip install build
python3 -m build
python3 -m twine upload dist/nats-py-X.Y.Z.tar.gz
Clone this wiki locally