Add release steps to bump_version script

This commit is contained in:
Joe Rickerby
2022-01-06 19:31:45 +00:00
parent 65c7a69af8
commit 81243337fd
+11
View File
@@ -177,6 +177,17 @@ def bump_version() -> None:
)
print("Done.")
print()
print("Push the new version to GitHub with:")
print(" git push && git push --tags")
print()
release_url = "https://github.com/pypa/cibuildwheel/releases/new?" + urllib.parse.urlencode(
{"tag": new_version}
)
print("Then create a release at the URL:")
print(f" {release_url}")
if __name__ == "__main__":