ray/release/nightly_tests/dataset/ray_sgd_training_app.yaml
SangBin Cho ec653e3196
[Nightly test] Move two line downloads to one line. (#25061)
It fixes the mysterious error when all cluster env build is failing when pip uninstall / pip install is written in 2 lines. The root cause will be fixed later
2022-05-22 00:07:03 -07:00

12 lines
442 B
YAML

base_image: "anyscale/ray:nightly-py37-cu102"
python:
pip_packages:
- pyarrow<7.0.0
conda_packages: []
post_build_cmds:
- pip uninstall -y ray && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
- pip3 install llvmlite --ignore-installed
- pip3 install -U torch==1.6 dask dask_ml mlflow tensorboard torchvision pickle5 s3fs
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}