This is an automated email from the ASF dual-hosted git repository. vterentev pushed a commit to branch fix-postcommit-python-26-feb in repository https://gitbox.apache.org/repos/asf/beam.git
commit 31a614d1a66e6106787efaf7e1ad10d82516e5d6 Author: Vitaly Terentyev <[email protected]> AuthorDate: Thu Feb 26 23:34:50 2026 +0400 Upgrade setuptools --- .../src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy index 76f380c94bb..8eec6de2b19 100644 --- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy +++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy @@ -3124,7 +3124,8 @@ class BeamModulePlugin implements Plugin<Project> { // pip 25.1 casues :sdks:python:installGcpTest stuck. Pin to 25.0.1 for now. args '-c', ". ${project.ext.envdir}/bin/activate && " + "pip install --pre --retries 10 --upgrade pip==25.0.1 --no-cache-dir && " + - "pip install --pre --retries 10 --upgrade tox --no-cache-dir" + "pip install --pre --retries 10 --upgrade tox --no-cache-dir && " + + "pip install --pre --retries 10 --upgrade setuptools build --no-cache-dir" } } // Gradle will delete outputs whenever it thinks they are stale. Putting a
