https://github.com/storpipfugl/pykdtree
Raw File
Tip revision: 6dad6ef8383b2407cfcad5ae1fc2ae26fd791c6e authored by David Hoese on 28 October 2022, 16:06:54 UTC
Update manylinux image to include Python 3.11
Tip revision: 6dad6ef
RELEASING.md
# Releasing pykdtree

1. Add release information to README.rst
2. Update version number in setup.py
3. Commit changes
4. Create a git annotated tag by running:

   ```
   git tag -a vX.Y.Z -m "Version X.Y.Z"
   ```

5. Push to github with:

   ```
   git push --follow-tags
   ```

6. Wait for tests/actions to pass on GitHub.
7. Click "Draft a new release" at https://github.com/storpipfugl/pykdtree/releases.
   Title it "Version X.Y.Z" and include the release notes for this version in the description.

back to top