File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,17 +30,27 @@ jobs:
3030 run : |
3131 python -m pip install cibuildwheel==1.5.5
3232
33- - name : Build wheels
33+ - name : Build wheels for CPython
3434 run : |
3535 python -m cibuildwheel --output-dir dist
3636 env :
3737 CIBW_BUILD : " cp3?-*"
3838 CIBW_SKIP : " cp35-* cp36-*"
3939 CIBW_MANYLINUX_X86_64_IMAGE : manylinux1
4040 CIBW_MANYLINUX_I686_IMAGE : manylinux1
41- CIBW_MANYLINUX_PYPY_X86_64_IMAGE : manylinux1
4241 CIBW_BEFORE_BUILD : pip install numpy==1.15
4342
43+ - name : Build wheels for PyPy
44+ run : |
45+ python -m cibuildwheel --output-dir dist
46+ env :
47+ CIBW_BUILD : " pp3?-*"
48+ CIBW_BEFORE_BUILD : pip install numpy==1.15
49+ if : >
50+ runner.os != 'Windows' && (
51+ startsWith(github.ref, 'refs/heads/v3.3') ||
52+ startsWith(github.ref, 'refs/tags/v3.3') )
53+
4454 - uses : actions/upload-artifact@v2
4555 with :
4656 name : wheels
You can’t perform that action at this time.
0 commit comments