mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-21 17:15:38 +03:00
Fix building wheels in CI. (#16653)
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.
This commit is contained in:
parent
2de2258bd2
commit
47c682101f
2 changed files with 2 additions and 1 deletions
2
.github/workflows/release-artifacts.yml
vendored
2
.github/workflows/release-artifacts.yml
vendored
|
@ -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'
|
||||
|
|
1
changelog.d/16653.misc
Normal file
1
changelog.d/16653.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Fix building of wheels in CI.
|
Loading…
Reference in a new issue