Skip to content

Commit

Permalink
cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed Aug 22, 2024
1 parent 7aa7f3d commit e0e57d2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,20 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-11, windows-2019, ubuntu-20.04]
os: [ubuntu-latest, windows-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python3 -m pip install cibuildwheel==2.20.0
run: python -m pip install cibuildwheel==2.20.0

- name: Build wheels
run: python3 -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl

0 comments on commit e0e57d2

Please sign in to comment.