@@ -75,21 +75,16 @@ jobs:
75
75
- [macos-10.15, macosx_*]
76
76
- [windows-2019, win_amd64]
77
77
- [windows-2019, win32]
78
- python : ["cp38", "cp39", "cp310"]
79
- include :
80
- # manylinux pypy builds
81
- - buildplat : [ubuntu-20.04, manylinux_x86_64]
82
- python : " pp38"
83
-
84
- # TODO: Uncomment and bump cibuildwheel version
85
- # once cibuildwheel adds PyPy 7.3.8
86
- # macOS pypy builds
87
- # - buildplat: [macos-10.15, macosx_x86_64]
88
- # python: "pp38"
89
-
90
- # Windows PyPy builds
91
- - buildplat : [windows-2019, win_amd64]
78
+ # TODO: uncomment PyPy 3.9 builds once PyPy
79
+ # re-releases a new minor version
80
+ # NOTE: This needs a bump of cibuildwheel version, also, once that happens.
81
+ python : ["cp38", "cp39", "cp310", "pp38"] # , "pp39"]
82
+ exclude :
83
+ # Don't build PyPy 32-bit windows
84
+ - buildplat : [windows-2019, win32]
92
85
python : " pp38"
86
+ - buildplat : [windows-2019, win32]
87
+ python : " pp39"
93
88
env :
94
89
IS_32_BIT : ${{ matrix.buildplat[1] == 'win32' }}
95
90
IS_PUSH : ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
@@ -120,7 +115,7 @@ jobs:
120
115
if : ${{ env.IS_32_BIT == 'true' }}
121
116
122
117
- name : Build wheels
123
- uses : pypa/cibuildwheel@v2.3.1
118
+ uses : pypa/cibuildwheel@v2.4.0
124
119
env :
125
120
CIBW_BUILD : ${{ matrix.python }}-${{ matrix.buildplat[1] }}
126
121
0 commit comments