From ad94eb03c69467862c9094a45a7780459046ddaf Mon Sep 17 00:00:00 2001 From: Kai Fricke Date: Mon, 18 Oct 2021 18:55:56 +0100 Subject: [PATCH] [ci/release] wrap pip github installs in quotation marks to prevent comment errors (#19464) --- release/golden_notebook_tests/dask_xgboost_app_config.yaml | 2 +- release/golden_notebook_tests/modin_xgboost_app_config.yaml | 2 +- .../shuffle_data_loader/shuffle_data_loader_app_config.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/release/golden_notebook_tests/dask_xgboost_app_config.yaml b/release/golden_notebook_tests/dask_xgboost_app_config.yaml index 0cb296916..c09d35a9d 100755 --- a/release/golden_notebook_tests/dask_xgboost_app_config.yaml +++ b/release/golden_notebook_tests/dask_xgboost_app_config.yaml @@ -6,7 +6,7 @@ debian_packages: python: pip_packages: - 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 - fastapi - uvicorn diff --git a/release/golden_notebook_tests/modin_xgboost_app_config.yaml b/release/golden_notebook_tests/modin_xgboost_app_config.yaml index 6e4d5225c..192f0f342 100755 --- a/release/golden_notebook_tests/modin_xgboost_app_config.yaml +++ b/release/golden_notebook_tests/modin_xgboost_app_config.yaml @@ -6,7 +6,7 @@ debian_packages: python: pip_packages: - 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 - s3fs - fastapi diff --git a/release/nightly_tests/shuffle_data_loader/shuffle_data_loader_app_config.yaml b/release/nightly_tests/shuffle_data_loader/shuffle_data_loader_app_config.yaml index 536c7b6da..235bcfc46 100644 --- a/release/nightly_tests/shuffle_data_loader/shuffle_data_loader_app_config.yaml +++ b/release/nightly_tests/shuffle_data_loader/shuffle_data_loader_app_config.yaml @@ -9,6 +9,6 @@ post_build_cmds: - pip uninstall -y ray - pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }} - 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") }}