Skip to content

Commit 0274331

Browse files
authored
Unpin the pip version in setupVirtualenv (#36745)
* Unpin the pip version in setupVirtualenv * trigger a python precommit to test
1 parent d119b29 commit 0274331

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"comment": "Modify this file in a trivial way to cause this test suite to run.",
3+
"modification": 0
4+
}

buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3122,12 +3122,8 @@ class BeamModulePlugin implements Plugin<Project> {
31223122
}
31233123
project.exec {
31243124
executable 'sh'
3125-
// TODO: https://github.com/apache/beam/issues/29022
3126-
// pip 23.3 is failing due to Hash mismatch between expected SHA of the packaged and actual SHA.
3127-
// until it is resolved on pip's side, don't use pip's cache.
3128-
// pip 25.1 casues :sdks:python:installGcpTest stuck. Pin to 25.0.1 for now.
31293125
args '-c', ". ${project.ext.envdir}/bin/activate && " +
3130-
"pip install --pre --retries 10 --upgrade pip==25.0.1 --no-cache-dir && " +
3126+
"pip install --pre --retries 10 --upgrade pip --no-cache-dir && " +
31313127
"pip install --pre --retries 10 --upgrade tox --no-cache-dir"
31323128
}
31333129
}

0 commit comments

Comments
 (0)