Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix building wheels in CI. (#16653)
Browse files Browse the repository at this point in the history
pip was using a vendored setuptools that was incompatible with
Python 3.12. Upgrading cibuildwheels to a version with a newer
version of pip (and thus a newer version of setuptools) fixes
the issue.
  • Loading branch information
clokep authored Nov 17, 2023
1 parent 2de2258 commit 47c6821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
python-version: "3.x"

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

- name: Set up QEMU to emulate aarch64
if: matrix.arch == 'aarch64'
Expand Down
1 change: 1 addition & 0 deletions changelog.d/16653.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix building of wheels in CI.

0 comments on commit 47c6821

Please sign in to comment.