This is an automated email from the ASF dual-hosted git repository.

jrmccluskey 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 02743314acf Unpin the pip version in setupVirtualenv (#36745)
02743314acf is described below

commit 02743314acf81a390c7fb9305da585f5b0af0485
Author: Jack McCluskey <[email protected]>
AuthorDate: Tue Dec 9 14:13:03 2025 -0500

    Unpin the pip version in setupVirtualenv (#36745)
    
    * Unpin the pip version in setupVirtualenv
    
    * trigger a python precommit to test
---
 .github/trigger_files/beam_PreCommit_Python_ML.json                 | 4 ++++
 .../src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy  | 6 +-----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/trigger_files/beam_PreCommit_Python_ML.json 
b/.github/trigger_files/beam_PreCommit_Python_ML.json
index e69de29bb2d..07d1fb88996 100644
--- a/.github/trigger_files/beam_PreCommit_Python_ML.json
+++ b/.github/trigger_files/beam_PreCommit_Python_ML.json
@@ -0,0 +1,4 @@
+{
+  "comment": "Modify this file in a trivial way to cause this test suite to 
run.",
+  "modification": 0
+}
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 daa8ed85e52..e8928ab885a 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -3122,12 +3122,8 @@ class BeamModulePlugin implements Plugin<Project> {
           }
           project.exec {
             executable 'sh'
-            // TODO: https://github.com/apache/beam/issues/29022
-            // pip 23.3 is failing due to Hash mismatch between expected SHA 
of the packaged and actual SHA.
-            // until it is resolved on pip's side, don't use pip's cache.
-            // 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 pip --no-cache-dir 
&& " +
                 "pip install --pre --retries 10 --upgrade tox --no-cache-dir"
           }
         }

Reply via email to