Skip to content

Commit

Permalink
Update to cibuildwheel for Python 3.12 (#1546)
Browse files Browse the repository at this point in the history
* Update to cibuildwheel for Python 3.12

* Update to Python 3.8 for newer cibuildwheel

Signed-off-by: Geoff Hutchison <[email protected]>
  • Loading branch information
ghutchis authored Dec 22, 2023
1 parent 3a2fbd2 commit 481dce8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,21 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.7'
python-version: '3.8'
cache: 'pip' # caching pip dependencies

- name: Install cibuildwheel
run: pip install cibuildwheel==2.12.3
run: pip install cibuildwheel==2.16.2

- name: Install dependencies
run: . ./scripts/github-actions/install.sh

- name: Build wheels
run: 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

upload_pypi:
Expand Down

0 comments on commit 481dce8

Please sign in to comment.