Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/trigger_files/beam_PreCommit_Python_ML.json
Original file line number Diff line number Diff line change
@@ -1,4 +0,0 @@
{
"comment": "Modify this file in a trivial way to cause this test suite to run.",
"modification": 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -3122,8 +3122,12 @@ 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 --no-cache-dir && " +
"pip install --pre --retries 10 --upgrade pip==25.0.1 --no-cache-dir && " +
"pip install --pre --retries 10 --upgrade tox --no-cache-dir"
}
}
Expand Down
Loading