[core] Remove google dependency (#12085)

This commit is contained in:
Philipp Moritz
2020-11-17 19:01:00 -08:00
committed by GitHub
parent f400333841
commit b96516e9d3
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -72,7 +72,7 @@ if [[ "$platform" == "linux" ]]; then
"$PYTHON_EXE" -u -c "import ray; print(ray.__commit__)" | grep "$TRAVIS_COMMIT" || (echo "ray.__commit__ not set properly!" && exit 1)
# Install the dependencies to run the tests.
"$PIP_CMD" install -q aiohttp google grpcio pytest==5.4.3 requests
"$PIP_CMD" install -q aiohttp grpcio pytest==5.4.3 requests
# Run a simple test script to make sure that the wheel works.
for SCRIPT in "${TEST_SCRIPTS[@]}"; do
@@ -111,7 +111,7 @@ elif [[ "$platform" == "macosx" ]]; then
"$PIP_CMD" install -q "$PYTHON_WHEEL"
# Install the dependencies to run the tests.
"$PIP_CMD" install -q aiohttp google grpcio pytest==5.4.3 requests
"$PIP_CMD" install -q aiohttp grpcio pytest==5.4.3 requests
# Run a simple test script to make sure that the wheel works.
for SCRIPT in "${TEST_SCRIPTS[@]}"; do
-1
View File
@@ -143,7 +143,6 @@ install_requires = [
"colorama",
"colorful",
"filelock",
"google",
"gpustat",
"grpcio >= 1.28.1",
"jsonschema",