mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
[ci/py310] Fix docker image build/tag (#24922)
We're currently not building the 3.9/3.10 ray-ml docker images, but we're still trying to tag/push them.
This commit is contained in:
parent
628ee4b5f0
commit
41b98b1b61
1 changed files with 5 additions and 2 deletions
|
@ -450,10 +450,13 @@ def push_and_tag_images(
|
||||||
|
|
||||||
# TODO(https://github.com/ray-project/ray/issues/16599):
|
# TODO(https://github.com/ray-project/ray/issues/16599):
|
||||||
# remove below after supporting ray-ml images with Python 3.9
|
# remove below after supporting ray-ml images with Python 3.9
|
||||||
if image_name in ["ray-ml"] and PY_MATRIX[py_name].startswith("3.9"):
|
if image_name in ["ray-ml"] and (
|
||||||
|
PY_MATRIX[py_name].startswith("3.9")
|
||||||
|
or PY_MATRIX[py_name].startswith("3.10")
|
||||||
|
):
|
||||||
print(
|
print(
|
||||||
f"{image_name} image is currently "
|
f"{image_name} image is currently "
|
||||||
f"unsupported with Python 3.9"
|
f"unsupported with Python 3.9/3.10"
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue