mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[ci/release] wrap pip github installs in quotation marks to prevent comment errors (#19464)
This commit is contained in:
parent
9742abb749
commit
ad94eb03c6
3 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ debian_packages:
|
||||||
python:
|
python:
|
||||||
pip_packages:
|
pip_packages:
|
||||||
- pandas>=1.3.0 # otherwise, a version mismatch between local and remote will cause an exception
|
- pandas>=1.3.0 # otherwise, a version mismatch between local and remote will cause an exception
|
||||||
- git+https://github.com/ray-project/xgboost_ray.git#egg=xgboost_ray
|
- "git+https://github.com/ray-project/xgboost_ray.git#egg=xgboost_ray"
|
||||||
- dask
|
- dask
|
||||||
- fastapi
|
- fastapi
|
||||||
- uvicorn
|
- uvicorn
|
||||||
|
|
|
@ -6,7 +6,7 @@ debian_packages:
|
||||||
python:
|
python:
|
||||||
pip_packages:
|
pip_packages:
|
||||||
- pandas>=1.3.0 # otherwise, a version mismatch between local and remote will cause an exception
|
- pandas>=1.3.0 # otherwise, a version mismatch between local and remote will cause an exception
|
||||||
- git+https://github.com/ray-project/xgboost_ray.git#egg=xgboost_ray
|
- "git+https://github.com/ray-project/xgboost_ray.git#egg=xgboost_ray"
|
||||||
- modin>=0.11.0 # ray.services has been removed
|
- modin>=0.11.0 # ray.services has been removed
|
||||||
- s3fs
|
- s3fs
|
||||||
- fastapi
|
- fastapi
|
||||||
|
|
|
@ -9,6 +9,6 @@ post_build_cmds:
|
||||||
- pip uninstall -y ray
|
- pip uninstall -y ray
|
||||||
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
|
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
|
||||||
- pip3 install -U ray[default]
|
- pip3 install -U ray[default]
|
||||||
- pip install -U git+https://github.com/ray-project/ray_shuffling_data_loader.git@main#egg=ray_shuffling_data_loader
|
- pip install -U "git+https://github.com/ray-project/ray_shuffling_data_loader.git@main#egg=ray_shuffling_data_loader"
|
||||||
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}
|
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue