This is an automated email from the ASF dual-hosted git repository.
jrmccluskey pushed a commit to branch cibuildUpgrade
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/cibuildUpgrade by this push:
new 3a5e5b3aed4 1 minor version jump
3a5e5b3aed4 is described below
commit 3a5e5b3aed49af7d0145d098657a02e706430f40
Author: Jack McCluskey <[email protected]>
AuthorDate: Tue Dec 17 13:57:02 2024 -0500
1 minor version jump
---
.github/workflows/build_wheels.yml | 2 +-
sdks/python/build.gradle | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build_wheels.yml
b/.github/workflows/build_wheels.yml
index 4472fd875e3..5f3c3b8def4 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -251,7 +251,7 @@ jobs:
name: Set up QEMU
- name: Install cibuildwheel
# note: sync cibuildwheel version with gradle task sdks:python:bdistPy*
steps
- run: pip install cibuildwheel==2.20.0 setuptools
+ run: pip install cibuildwheel==2.18.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) }}
diff --git a/sdks/python/build.gradle b/sdks/python/build.gradle
index c7593a65b7d..6b3d21fe7a8 100644
--- a/sdks/python/build.gradle
+++ b/sdks/python/build.gradle
@@ -165,7 +165,7 @@ platform_identifiers_map.each { platform, idsuffix ->
args '-c', ". ${envdir}/bin/activate && " +
// note: sync cibuildwheel version with GitHub Action
// .github/workflows/build_wheel.yml:build_wheels "Install
cibuildwheel" step
- "pip install cibuildwheel==2.20.0 setuptools && " +
+ "pip install cibuildwheel==2.18.0 setuptools && " +
"cibuildwheel --print-build-identifiers --platform
${platform} --archs ${archs} && " +
"cibuildwheel --output-dir ${buildDir} --platform ${platform}
--archs ${archs} "
}