File tree 1 file changed +12
-2
lines changed 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -30,17 +30,27 @@ jobs:
30
30
run : |
31
31
python -m pip install cibuildwheel==1.5.5
32
32
33
- - name : Build wheels
33
+ - name : Build wheels for CPython
34
34
run : |
35
35
python -m cibuildwheel --output-dir dist
36
36
env :
37
37
CIBW_BUILD : " cp3?-*"
38
38
CIBW_SKIP : " cp35-* cp36-*"
39
39
CIBW_MANYLINUX_X86_64_IMAGE : manylinux1
40
40
CIBW_MANYLINUX_I686_IMAGE : manylinux1
41
- CIBW_MANYLINUX_PYPY_X86_64_IMAGE : manylinux1
42
41
CIBW_BEFORE_BUILD : pip install numpy==1.15
43
42
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
+
44
54
- uses : actions/upload-artifact@v2
45
55
with :
46
56
name : wheels
You can’t perform that action at this time.
0 commit comments