Skip to content

Publishing to PyPI

Staś Małolepszy edited this page Jun 13, 2017 · 10 revisions

python-fluent is available on PyPI as fluent.

Setup

To publish new versions, first follow the setup instructions regarding .pypirc.

Publishing new versions

  1. Update setup.py and CHANGELOG.md.

  2. Commit:

    $ git commit -m "fluent X.Y.X"
    
  3. Tag the commit:

    $ git tag -s X.Y.Z
    
  4. Push the commit and the tag:

    $ git push
    $ git push --tags
    
  5. Publish:

    $ python setup.py sdist upload -r pypi
    
Clone this wiki locally