Skip to content

Commit

Permalink
update runners, cibuildwheel, python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcaron committed Jun 4, 2024
1 parent e61aecc commit 7f84c97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019]
os: [ubuntu-24.04, windows-2022]

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.12.1
run: python -m pip install cibuildwheel==2.18.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BEFORE_TEST: pip install -r requirements-dev.txt
CIBW_TEST_COMMAND: pytest {project}/tests
CIBW_BUILD: cp3{7,8,9,10,11}-{manylinux_x86_64,win_amd64}
CIBW_BUILD: cp3{8,9,10,11,12}-{manylinux_x86_64,win_amd64}

- uses: actions/upload-artifact@v4
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
Expand Down

0 comments on commit 7f84c97

Please sign in to comment.