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 e9f4c99206a fix Python 3.12 PostCommit by installing setuptools 
(#37719)
e9f4c99206a is described below

commit e9f4c99206aa9c4da96abd9dc0edfe83e4de85bd
Author: Abdelrahman Ibrahim <[email protected]>
AuthorDate: Thu Feb 26 21:26:37 2026 +0200

    fix Python 3.12 PostCommit by installing setuptools (#37719)
---
 .../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

Reply via email to