Skip to content

Commit

Permalink
[Python] Update wheels we build in CI/CD.
Browse files Browse the repository at this point in the history
This removes MacOS, which has been failing, and no one seems to care
about anyway. This also removes the Python 3.8 wheel on Linux, since
Python 3.8 is now EOL. Finally, this adds a newer Python 3.13 wheel
for a more modern Python version.

This also updates the cibuildwheel version we use to the newest
release, which has full Python 3.13 support. There should be no
breaking changes, but cibuildwheel will warn that the next major
release requires Python 3.11 or newer.
  • Loading branch information
mikeurbach committed Jan 9, 2025
1 parent 4e47877 commit 8772514
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/uploadWheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,10 @@ jobs:
fail-fast: false
matrix:
config:
- os: ubuntu-20.04
cibw_build: cp38-manylinux_x86_64
- os: ubuntu-20.04
cibw_build: cp310-manylinux_x86_64
- os: macos-13
cibw_build: cp38-macosx_x86_64
- os: macos-13
cibw_build: cp310-macosx_x86_64
- os: ubuntu-20.04
cibw_build: cp313-manylinux_x86_64

steps:
- name: Get CIRCT
Expand All @@ -46,7 +42,7 @@ jobs:
uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.2
run: python -m pip install cibuildwheel==2.22.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse ./lib/Bindings/Python
Expand Down

0 comments on commit 8772514

Please sign in to comment.