Files
ray-project--ray/ci/env/install-core-prerelease-dependencies.sh
2026-07-13 13:17:40 +08:00

9 lines
286 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# install all unbounded dependencies in setup.py and any additional test dependencies
# for the min build for ray core
DEPS=(requests protobuf pytest-httpserver==1.1.3 jsonschema==4.23.0)
python -m pip install -U --pre --upgrade-strategy=eager "${DEPS[@]}"