This is an automated email from the ASF dual-hosted git repository. vterentev pushed a commit to branch fix-cibuildwheel in repository https://gitbox.apache.org/repos/asf/beam.git
commit 18af744a6e3043b3a984154ff619aac1875115d1 Author: Vitaly Terentyev <[email protected]> AuthorDate: Tue Feb 24 16:03:26 2026 +0400 Fix installing cibuildwheel --- .github/workflows/build_wheels.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 1bd4d297a29..9ab25b96837 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -250,7 +250,12 @@ jobs: name: Set up QEMU - name: Install cibuildwheel # note: sync cibuildwheel version with gradle task sdks:python:bdistPy* steps - run: pip install cibuildwheel==3.3.1 setuptools + run: | + if [[ "${{ matrix.py_version }}" == "cp310-" ]]; then + pip install cibuildwheel==2.23.3 setuptools + else + pip install cibuildwheel==3.3.1 setuptools + fi - name: Build wheel # Only build wheel if it is one of the target versions for this platform, otherwise no-op if: ${{ contains(matrix.os_python.python, matrix.py_version) }}
