Skip to content

Commit 0c39303

Browse files
committed
1
1 parent 4ac9bf0 commit 0c39303

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Diff for: .github/workflows/build-push.yml

+24
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,18 @@ jobs:
6565
run: |
6666
python3 -m pip install cibuildwheel==2.22.0
6767
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+
6880
- name: Install OpenSSL for Windows
6981
if: runner.os == 'Windows'
7082
run: |
@@ -179,6 +191,18 @@ jobs:
179191
run: |
180192
python -m pip install cibuildwheel==2.22.0
181193
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+
182206
- name: Build wheels
183207
env:
184208
CIBW_BUILD: "cp39* cp310* cp311* cp312*" # limit to specific version since it take much more time than jobs limit

0 commit comments

Comments
 (0)