Skip to content

Commit d60b516

Browse files
committed
Fix PyPy sections (build for both 3.10 and 3.11
1 parent 28273e1 commit d60b516

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,20 +191,22 @@ jobs:
191191
# Ignore because dependencies do not provide win-arm wheels on 3.10; should be removed on merge up
192192
if: matrix.os != 'windows-11-arm'
193193

194-
- name: Build wheels for PyPy
194+
- name: Build wheels for PyPy 3.10
195195
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
196196
with:
197197
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
198198
env:
199-
CIBW_BUILD: "cp310-*"
199+
CIBW_BUILD: "pp310-*"
200200
CIBW_ARCHS: ${{ matrix.cibw_archs }}
201+
CIBW_ENABLE: pypy
202+
if: matrix.cibw_archs != 'aarch64' && matrix.os != 'windows-latest' && matrix.os != 'windows-11-arm'
201203

202-
- name: Build wheels for PyPy
203-
uses: pypa/cibuildwheel@ee63bf16da6cddfb925f542f2c7b59ad50e93969 # v2.22.0
204+
- name: Build wheels for PyPy 3.11
205+
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
204206
with:
205207
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
206208
env:
207-
CIBW_BUILD: "pp310-*"
209+
CIBW_BUILD: "pp311-*"
208210
CIBW_ARCHS: ${{ matrix.cibw_archs }}
209211
CIBW_ENABLE: pypy
210212
if: matrix.cibw_archs != 'aarch64' && matrix.os != 'windows-latest' && matrix.os != 'windows-11-arm'

0 commit comments

Comments
 (0)