From e0573df337d9d6ec4298e4d3dce056e071abe9e4 Mon Sep 17 00:00:00 2001 From: Amog Kamsetty Date: Thu, 26 Nov 2020 10:52:11 -0800 Subject: [PATCH] [CI] Fix windows build (#12415) * attempt to fix windows * fix syntax * try again * try again * try again * Revert "[ray_client] Support calling functions from other functions and correct the tests (#12141)" This reverts commit 4066056a0d07116ef68fe40e061f53e49e58cf34. * Revert * Revert "Revert "[ray_client] Support calling functions from other functions and correct the tests (#12141)"" This reverts commit bb27b87b6c8d780ad796f4d4aeaa20113c8eca79. * please work * works * fix --- ci/travis/install-dependencies.sh | 2 +- python/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/travis/install-dependencies.sh b/ci/travis/install-dependencies.sh index 0193f4835..1f62dfd08 100755 --- a/ci/travis/install-dependencies.sh +++ b/ci/travis/install-dependencies.sh @@ -331,7 +331,7 @@ install_dependencies() { install_node fi - CC=gcc pip install psutil setproctitle --target="${WORKSPACE_DIR}/python/ray/thirdparty_files" + CC=gcc pip install psutil setproctitle==1.1.10 --target="${WORKSPACE_DIR}/python/ray/thirdparty_files" } install_dependencies "$@" diff --git a/python/setup.py b/python/setup.py index ef3dc4b18..20b97ee9d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -270,7 +270,7 @@ def build(build_python, build_java): # that certain flags will not be passed along such as --user or sudo. # TODO(rkn): Fix this. if not os.getenv("SKIP_THIRDPARTY_INSTALL"): - pip_packages = ["psutil", "setproctitle"] + pip_packages = ["psutil", "setproctitle==1.1.10"] subprocess.check_call( [ sys.executable, "-m", "pip", "install", "-q",