Skip to content

Publishing to PyPI

Staś Małolepszy edited this page Nov 29, 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 and push:

    $ git commit -m "fluent X.Y.X"
    $ git push
    
  3. Draft a new release on GitHub.

    • Use X.Y.Z for the tag name (without the v).
    • Use fluent X.Y.Z (Month DD) for the release title.
    • Copy the relevant part of the CHANGELOG.
  4. Publish:

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