[ci/release] wrap pip github installs in quotation marks to prevent comment errors (#19464)

This commit is contained in:
Kai Fricke 2021-10-18 18:55:56 +01:00 committed by GitHub
parent 9742abb749
commit ad94eb03c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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") }}