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 6acc379e3698130e2e193acb793422f513950c6b Author: Vitaly Terentyev <[email protected]> AuthorDate: Tue Feb 24 16:03:26 2026 +0400 Fix installing cibuildwheel --- sdks/python/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/python/build.gradle b/sdks/python/build.gradle index 6e0786d9855..f443aa28ab1 100644 --- a/sdks/python/build.gradle +++ b/sdks/python/build.gradle @@ -200,7 +200,7 @@ platform_identifiers_map.each { platform, idsuffix -> } getVersionsAsList('python_versions').each { it -> def pyversion = it.replace('.', '') - def cibuildwheel_version = it == '3.10' ? '2.23.3' : '3.3.1' + def cibuildwheel_version = it == '310' ? '2.23.3' : '3.3.1' project.tasks.register("bdistPy${pyversion}${platform}") { description "Build a Python wheel distribution for Py${pyversion} ${platform}"
