Skip to content

Release checklist

Joris Van den Bossche edited this page Aug 2, 2025 · 6 revisions

Releasing:

  • Make an empty release commit: git commit --allow-empty -m 'RLS: v0.2.1'
  • Tag the commit using an annotated tag. git tag -a v0.2.1 -m "Version 0.2.1"
  • 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

CircleCI now requires a token to download assets. Sign in to CircleCI, then go to account settings and create an API token. This is appended to the URL as <your token> below.

Clone this wiki locally