Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
dkropachev committed Jan 23, 2025
1 parent 4ac9bf0 commit 0c39303
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ jobs:
run: |
python3 -m pip install cibuildwheel==2.22.0
- name: Install cython
run: |
python -m pip install Cython
- name: Install setuptools
run: |
python -m pip install setuptools --upgrade
- name: Install wheel
run: |
python -m pip install wheel --upgrade
- name: Install OpenSSL for Windows
if: runner.os == 'Windows'
run: |
Expand Down Expand Up @@ -179,6 +191,18 @@ jobs:
run: |
python -m pip install cibuildwheel==2.22.0
- name: Install cython
run: |
python -m pip install 'Cython>=3.0.11,<4'
- name: Install setuptools
run: |
python -m pip install setuptools --upgrade
- name: Install wheel
run: |
python -m pip install wheel --upgrade
- name: Build wheels
env:
CIBW_BUILD: "cp39* cp310* cp311* cp312*" # limit to specific version since it take much more time than jobs limit
Expand Down

0 comments on commit 0c39303

Please sign in to comment.