-
Notifications
You must be signed in to change notification settings - Fork 1
Dev guide
jli755 edited this page Apr 8, 2025
·
2 revisions
- Edit
__init__.pyto remove the.dev0, e.g., change "0.0.10.dev0" to "0.0.10". - Commit with message "bump version for release"
- Tag the release like
git tag -a v0.0.10 -m "Version 0.0.10". - push and then push again with
--tags: e.g.,git push origin master --tags. - Login to Github website, click "releases" on the right and "Draft new release".
- Choose the new tag, then click on the green button at the bottom
- github "Actions" will run to pypi
- Edit
__init__.pyto increase the version and add.dev0, e.g., change "0.0.10" to "0.0.11.dev0". - Commit with message "post-release version bump".
git push origin master