This is an automated email from the ASF dual-hosted git repository.
yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new b92c436ee64 Use Python 3.11 and cibuildwheel 3.4.0 for wheel builds
(#37850)
b92c436ee64 is described below
commit b92c436ee645395f9b667339add25dbcd26bbc96
Author: Abdelrahman Ibrahim <[email protected]>
AuthorDate: Fri Mar 13 21:04:30 2026 +0200
Use Python 3.11 and cibuildwheel 3.4.0 for wheel builds (#37850)
---
.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 5fa6bbde47c..fa820c981b1 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) }}