Skip to content

Commit 8a4a69e

Browse files
authored
Repin pip to 2.50.1 to fix hanging yaml xlang workflow (#37092)
* Revert "Unpin the pip version in setupVirtualenv (#36745)" This reverts commit 0274331. * Trigger previously failed workflow.
1 parent f9bccb8 commit 8a4a69e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-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-
}
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+
"revision": 1
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)