Skip to content

Commit

Permalink
Update build_wheels.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
borisbolliet authored Sep 29, 2024
1 parent 48227ae commit a996cba
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
needs: bump_version
strategy:
matrix:
os: [ubuntu-latest,macos-latest]
os: [ubuntu-latest,macos-latest,windows-latest]
python-version: ["3.9","3.10"]
include:
- os: ubuntu-latest
Expand Down Expand Up @@ -216,7 +216,13 @@ jobs:

run: python -m cibuildwheel --output-dir wheelhouse


# Build wheels for Windows
- name: Build wheels for Windows
if: matrix.os == 'windows-latest'
env:
CIBW_BUILD: ${{ env.CIBW_BUILD }}
CIBW_SKIP: "cp27-* cp34-* cp35-* cp36-* cp37-* cp38-* pp* *-win32"
run: python -m cibuildwheel --output-dir wheelhouse

- name: Install dependencies for source distribution
run: |
Expand Down

0 comments on commit a996cba

Please sign in to comment.