Skip to content

Publishing to PyPI

Staś Małolepszy edited this page Jan 15, 2019 · 10 revisions

python-fluent hosts the code of the following packages available on PyPI:

Setup

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

Publishing new versions

  1. cd fluent.syntax

  2. Update setup.py and CHANGELOG.md.

  3. Commit and push:

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

    • Use [email protected] for the tag name
    • Use fluent.syntax X.Y.Z for the release title.
    • Copy the relevant part of the CHANGELOG.
  5. Publish:

    $ python setup.py sdist upload -r pypi
    

The fluent package

Up to version 0.10, the fluent.syntax module used to be published as fluent on PyPI. That package is still available but shouldn't be updated any more.

Clone this wiki locally