File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
buildSrc/src/main/groovy/org/apache/beam/gradle Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- {
2- "comment" : " Modify this file in a trivial way to cause this test suite to run." ,
3- "modification" : 0
4- }
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments