Fork of https://github.com/brettcannon/cpython-wasi-build.
If you wish to create a release for a new version of CPython, follow these steps:
- Update
PYTHON_MAJOR_MINORin.github/workflows/release.ymlto the desired version - Fetch the corresponding upstream branch for the release
- Add the upstream
brettcannon/cpython-wasi-buildrepository as a remotegit remote add brett-cannon https://github.com/brettcannon/cpython-wasi-build - Switch to the release branch for the version you are releasing (e.g.,
release/3.12), and push it up to the forked remotegit fetch brett-cannon git switch -c release/3.12 brett-cannon/release/3.12 git push -u origin release/3.12
- Add the upstream
- Create a new release via the GitHub UI, ensuring to include a Python micro version for the level of release you wish to create (e.g.,
3.12.0,3.12.1, etc.)