From 1d63812c11ed3d48768a3329418b515a7b3c1d7a Mon Sep 17 00:00:00 2001 From: aIbrahiim Date: Fri, 13 Mar 2026 16:17:01 +0200 Subject: [PATCH] Use Python 3.11 and cibuildwheel 3.4.0 for wheel builds --- .github/workflows/build_wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 5fa6bbde47ca..fa820c981b13 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -244,13 +244,13 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: '3.11' - uses: docker/setup-qemu-action@v3 if: ${{matrix.os_python.arch == 'aarch64'}} name: Set up QEMU - name: Install cibuildwheel # note: sync cibuildwheel version with gradle task sdks:python:bdistPy* steps - run: pip install cibuildwheel==2.23.3 setuptools + run: pip install cibuildwheel==3.4.0 setuptools - 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) }}