From b31559f2e01657438567eaf4adb7b30fd4c32629 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 26 Oct 2021 19:17:59 +0100 Subject: [PATCH] Update release steps in docs --- docs/contributing.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/contributing.md b/docs/contributing.md index 74f93da3..c6a5b930 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -127,12 +127,10 @@ bin/bump_version.py You'll be prompted to enter the new version number. Update the changelog when prompted. The script will create a 'bump version' commit and version tag. -Finally, cut the release and upload to PyPI/GitHub. +Finally, cut the release and push to GitHub. ```bash -rm -rf dist -python -m build -git push && git push --tags && twine upload dist/* +git push && git push --tags ``` -Then head to https://github.com/pypa/cibuildwheel/releases and create a GitHub release from the new tag, pasting in the changelog entry. +Then head to https://github.com/pypa/cibuildwheel/releases and create a GitHub release from the new tag, pasting in the changelog entry. Once the release is created inside GitHub, a CI job will create the assets and upload them to PyPI.