2021-08-31 17:07:47 +02:00
|
|
|
base_image: "anyscale/ray-ml:pinned-nightly-py37"
|
2021-06-11 02:03:04 -07:00
|
|
|
env_vars: { }
|
|
|
|
debian_packages:
|
|
|
|
- curl
|
|
|
|
|
|
|
|
python:
|
|
|
|
pip_packages:
|
|
|
|
- pytest
|
2021-08-31 17:07:47 +02:00
|
|
|
- pandas>=1.3.0 # otherwise, a version mismatch between local and remote will cause an exception
|
2021-06-11 02:03:04 -07:00
|
|
|
- xgboost_ray
|
|
|
|
- dask
|
2021-08-31 17:07:47 +02:00
|
|
|
- fastapi
|
|
|
|
- uvicorn
|
|
|
|
- tblib
|
2021-06-11 02:03:04 -07:00
|
|
|
conda_packages: [ ]
|
|
|
|
|
|
|
|
post_build_cmds:
|
|
|
|
- pip uninstall -y ray || true
|
|
|
|
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
|
2021-09-10 17:50:31 +01:00
|
|
|
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}
|