Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 598 Bytes

RELEASE.md

File metadata and controls

20 lines (14 loc) · 598 Bytes

Process to push a new version on PyPi (Python Package Index) with Github Actions

Setup the package version

Edit the file setup.py to declare the new version:

setup(
    ...
    version='2.0.1',
    ...
)

Commit the change, push to your Git repository remote on GitHub, create a pull request into the master branch. Once the pull request is merged, the final steps are: