Skip to content

Commit 86ca83e

Browse files
authored
Exclude 3.14 ML containers from push314 (#38221)
* Exclude 3.14 ML containers from push314 * feedback
1 parent 4e24a9c commit 86ca83e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdks/python/container/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ for(int i=min_python_version; i<=max_python_version; ++i) {
5757
}
5858
}
5959
dependsOn ':sdks:python:container:py' + cur + ':docker'
60-
if (project.hasProperty("include-ml")) {
60+
// 3.14 does not have dependencies for ML yet.
61+
if (project.hasProperty("include-ml") && i < 14) {
6162
dependsOn ':sdks:python:container:ml:push' + cur
6263
}
6364
if (project.hasProperty("include-distroless")) {

0 commit comments

Comments
 (0)