We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d0eff4 commit 5602fc4Copy full SHA for 5602fc4
1 file changed
.github/workflows/python-package.yml
@@ -189,6 +189,7 @@ jobs:
189
strategy:
190
matrix:
191
arch: ["x86_64", "aarch64"]
192
+ build: ["cp37-manylinux*", "pp37-manylinux*"]
193
steps:
194
- uses: actions/checkout@v1
195
- name: Set up QEMU
@@ -204,12 +205,12 @@ jobs:
204
205
- name: Install Python dependencies
206
run: |
207
python -m pip install --upgrade pip
- pip install twine cibuildwheel==2.0.0
208
+ pip install twine cibuildwheel==2.3.1
209
- name: Build wheels
210
211
python -m cibuildwheel --output-dir wheelhouse
212
env:
- CIBW_BUILD: cp36-* pp*
213
+ CIBW_BUILD: ${{ matrix.build }}
214
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
215
CIBW_MANYLINUX_*_IMAGE: manylinux2014
216
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: manylinux2014
0 commit comments