Skip to content

Commit

Permalink
Enable Python 3.12 prerelease in cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrist committed Jul 4, 2023
1 parent 3e95350 commit 8aeb1c4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,13 @@ jobs:
- name: Set up Environment
if: github.event_name != 'release'
run: |
echo "CIBW_SKIP=${CIBW_SKIP} *-musllinux_* cp38-*_aarch64 cp39-*_aarch64 cp311-*_aarch64" >> $GITHUB_ENV
echo "CIBW_SKIP=${CIBW_SKIP} *-musllinux_* cp38-*_aarch64 cp39-*_aarch64 cp311-*_aarch64 cp312-*_aarch64" >> $GITHUB_ENV
- name: Enable CPython 3.12 prerelease builds for Linux testing
if: github.event_name != 'release' && runner.os == 'Linux'
run: |
echo "CIBW_PRERELEASE_PYTHONS=True" >> $GITHUB_ENV
echo "CIBW_BUILD=cp38-* cp39-* cp310-* cp311-* cp312-*" >> $GITHUB_ENV
- name: Build & Test Wheels
uses: pypa/cibuildwheel@v2.11.2
Expand Down

0 comments on commit 8aeb1c4

Please sign in to comment.