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",