Skip to content

Commit 1a7a55f

Browse files
committed
Revert "Unpin the pip version in setupVirtualenv (#36745)"
This reverts commit 0274331.
1 parent dd3de10 commit 1a7a55f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3122,8 +3122,12 @@ 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.
31253129
args '-c', ". ${project.ext.envdir}/bin/activate && " +
3126-
"pip install --pre --retries 10 --upgrade pip --no-cache-dir && " +
3130+
"pip install --pre --retries 10 --upgrade pip==25.0.1 --no-cache-dir && " +
31273131
"pip install --pre --retries 10 --upgrade tox --no-cache-dir"
31283132
}
31293133
}

0 commit comments

Comments
 (0)