-
Notifications
You must be signed in to change notification settings - Fork 22
How to Release
Mert Salık edited this page Mar 25, 2022
·
1 revision
- Merge the pull request
-
bumpversion [major|minor|patch|build]
-> this will create a local commit - Push the local changes ( optional )
- Create a release using
bumpversion --tag release
- Push the release commit with the tag
git push --tags
- Create new dist using
python3 -m build
- If everything is ok, than upload to PyPi with
python3 -m twine upload dist/*
- Check pypi has the latest version of the metabasepy package.
Thats all.