From b96516e9d31aeb33da83086191d76e3f4614c80a Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Tue, 17 Nov 2020 19:01:00 -0800 Subject: [PATCH] [core] Remove google dependency (#12085) --- ci/travis/test-wheels.sh | 4 ++-- python/setup.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/travis/test-wheels.sh b/ci/travis/test-wheels.sh index 4ef444a0c..f9131acd5 100755 --- a/ci/travis/test-wheels.sh +++ b/ci/travis/test-wheels.sh @@ -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 diff --git a/python/setup.py b/python/setup.py index 26a1b0b32..47cfe5a53 100644 --- a/python/setup.py +++ b/python/setup.py @@ -143,7 +143,6 @@ install_requires = [ "colorama", "colorful", "filelock", - "google", "gpustat", "grpcio >= 1.28.1", "jsonschema",