Releasing scheil¶
Create a release of scheil¶
To release a new version of scheil:
These steps assume that 0.1 is the most recently tagged version number and 0.2 is the next version number to be released.
Replace their values with the last public release’s version number and the new version number as appropriate.
Determine what the next version number should be using semantic versioning.
Resolve or defer all pull requests and issues tagged with the upcoming version milestone.
git stashto save any uncommitted work.git checkout mastergit pullto make sure you haven’t missed any last-minute commits. After this point, nothing else is making it into this version.pytestto ensure that all tests pass locally.sphinx-apidoc -f -H 'API Documentation' -o docs/api/ scheilto regenerate the API documentation.Update
CHANGES.rstwith a human-readable list of changes since the last commit.git log --oneline --no-decorate --color 0.1^..mastercan be used to list the changes since the last version.git add docs/api CHANGES.rstto stage the updated documentation.git commit -m "REL: 0.2"to commit the changes.git push origin masterVerify that all continuous integration test and build workflows pass.
Create a release on GitHub
Set the “Tag version” field to
0.2.Set the branch target to
master.Set the “Release title” to
scheil 0.2.Leave the description box blank.
If this version is a pre-release, check the “This is a pre-release” box.
Click “Publish release”.
The new version will be available on PyPI when the
Build and deploy to PyPIworkflow on GitHub Actions finishes successfully.
Deploy to PyPI (manually)¶
Warning
DO NOT FOLLOW THESE STEPS unless the GitHub Actions deployment workflow is broken.
Creating a GitHub release should trigger the Build and deploy to PyPI workflow on GitHub Actions that will upload source and platform-dependent wheel distributions automatically.
To release a source distribution to PyPI:
If deploying for the first time:
pip install twine buildrm -R dist/*on Linux/OSX ordel dist/*on Windowsgit checkout masterto checkout the latest versiongit pullgit logto verify the repository state matches the newly created tagpython -m build --sdistMake sure that the script correctly detected the new version exactly and not a dirty / revised state of the repo.
twine upload dist/*to upload (assumes a correctly configured~/.pypircfile)
Deploy to conda-forge (manually)¶
The conda-forge autotick bot will automatically open a pull request in the conda-forge/scheil-feedstock repository after the package has been uploaded to PyPI. This usually happens in within an hour of the PyPI release. If the build succeeds, the PR will be merged automatically and scheil will usually be available in an hour or two.
Warning
DO NOT FOLLOW THESE STEPS unless the pull request opened by the conda-forge autotick bot on the conda-forge/scheil-feedstock was not merged automatically and a new PR needs to be built manually.
Start with the commit checked out which was tagged with the new version.
Generate the SHA256 hash of the build artifact (tarball) submitted to PyPI. Alternatively, the hashes can be found by clicking the “View” button for the source distribution in the PyPI download files table.
Fork the conda-forge/scheil-feedstock repo.
Update scheil version and sha256 strings in the
recipe/meta.yamlfile.If any of the dependencies changed since the last release, make sure to update the
recipe/meta.yamlfile.Submit a pull request to the main scheil feedstock repo.
Once the build completes successfully, merge the pull request.