Skip to content

Commit

Permalink
Update to cibuildwheel for Python 3.12
Browse files Browse the repository at this point in the history
Signed-off-by: Geoff Hutchison <[email protected]>
  • Loading branch information
ghutchis committed Dec 22, 2023
1 parent d300d74 commit bc7252d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,19 @@ jobs:

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.7'

- 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 All @@ -77,7 +76,7 @@ jobs:
# upload to PyPI on every tag push
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down

0 comments on commit bc7252d

Please sign in to comment.