Skip to content

How to Release

Mert Salık edited this page Mar 25, 2022 · 1 revision

How to create a new release

  1. Merge the pull request
  2. bumpversion [major|minor|patch|build] -> this will create a local commit
  3. Push the local changes ( optional )
  4. Create a release using bumpversion --tag release
  5. Push the release commit with the tag git push --tags
  6. Create new dist using python3 -m build
  7. If everything is ok, than upload to PyPi with python3 -m twine upload dist/*
  8. Check pypi has the latest version of the metabasepy package.

Thats all.

Clone this wiki locally