9 lines
286 B
Bash
Executable File
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[@]}"
|