Skip to content

Commit

Permalink
ci: prepare for cibuildwheel 3
Browse files Browse the repository at this point in the history
cibuildwheel 3 will require Python 3.11+ and PyPy packages will be disabled by default.
  • Loading branch information
plusvic committed Nov 26, 2024
1 parent 2117e14 commit b0d699d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'

- run: rustup target add aarch64-apple-darwin x86_64-apple-darwin
if: matrix.build == 'macos'
Expand All @@ -155,6 +155,7 @@ jobs:
- name: Build ${{ matrix.platform || matrix.os }} binaries
run: cibuildwheel --output-dir wheelhouse py
env:
CIBW_ENABLE: 'pypy'
CIBW_BUILD: '${{ matrix.python-version }}-*'
# wasmtime doesn't support i686
CIBW_SKIP: '*_i686 *-musllinux* *-win32'
Expand Down

0 comments on commit b0d699d

Please sign in to comment.