File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 65
65
run : |
66
66
python3 -m pip install cibuildwheel==2.22.0
67
67
68
+ - name : Install cython
69
+ run : |
70
+ python -m pip install Cython
71
+
72
+ - name : Install setuptools
73
+ run : |
74
+ python -m pip install setuptools --upgrade
75
+
76
+ - name : Install wheel
77
+ run : |
78
+ python -m pip install wheel --upgrade
79
+
68
80
- name : Install OpenSSL for Windows
69
81
if : runner.os == 'Windows'
70
82
run : |
@@ -179,6 +191,18 @@ jobs:
179
191
run : |
180
192
python -m pip install cibuildwheel==2.22.0
181
193
194
+ - name : Install cython
195
+ run : |
196
+ python -m pip install 'Cython>=3.0.11,<4'
197
+
198
+ - name : Install setuptools
199
+ run : |
200
+ python -m pip install setuptools --upgrade
201
+
202
+ - name : Install wheel
203
+ run : |
204
+ python -m pip install wheel --upgrade
205
+
182
206
- name : Build wheels
183
207
env :
184
208
CIBW_BUILD : " cp39* cp310* cp311* cp312*" # limit to specific version since it take much more time than jobs limit
You can’t perform that action at this time.
0 commit comments