Skip to content

Commit 5602fc4

Browse files
committed
Fix missing CPython builds on Linux.
Update build packages. Split matrix jobs.
1 parent 1d0eff4 commit 5602fc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ jobs:
189189
strategy:
190190
matrix:
191191
arch: ["x86_64", "aarch64"]
192+
build: ["cp37-manylinux*", "pp37-manylinux*"]
192193
steps:
193194
- uses: actions/checkout@v1
194195
- name: Set up QEMU
@@ -204,12 +205,12 @@ jobs:
204205
- name: Install Python dependencies
205206
run: |
206207
python -m pip install --upgrade pip
207-
pip install twine cibuildwheel==2.0.0
208+
pip install twine cibuildwheel==2.3.1
208209
- name: Build wheels
209210
run: |
210211
python -m cibuildwheel --output-dir wheelhouse
211212
env:
212-
CIBW_BUILD: cp36-* pp*
213+
CIBW_BUILD: ${{ matrix.build }}
213214
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
214215
CIBW_MANYLINUX_*_IMAGE: manylinux2014
215216
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: manylinux2014

0 commit comments

Comments
 (0)