-
-
Notifications
You must be signed in to change notification settings - Fork 7
Release checklist
Martin Fleischmann edited this page Feb 18, 2023
·
2 revisions
Before releasing:
- Update Changelog
Releasing:
- Make an empty release commit:
git commit --allow-empty -m 'RLS: 2023.2.0'
- Tag the commit using an annotated tag.
git tag -a 2023.2.0 -m "Version 2023.2.0"
- Push the RLS commit
git push upstream main
- Also push the tag!
git push upstream --tags
- Then the github worflow will create sdist/wheel, upload to PyPI, create a GitHub release, and attach the sdist
- Manually update the GitHub release body text (with content from changelog)
Packaging:
- update on conda-forge (should be done automatically once the github release is made)
- PyPI is already done by workflow