diff --git a/ci/travis/install-dependencies.sh b/ci/travis/install-dependencies.sh index 7bc73e967..5d39c1c8b 100755 --- a/ci/travis/install-dependencies.sh +++ b/ci/travis/install-dependencies.sh @@ -333,7 +333,7 @@ install_dependencies() { install_node fi - CC=gcc pip install psutil setproctitle==1.1.10 --target="${WORKSPACE_DIR}/python/ray/thirdparty_files" + CC=gcc pip install psutil setproctitle --target="${WORKSPACE_DIR}/python/ray/thirdparty_files" } install_dependencies "$@" diff --git a/python/setup.py b/python/setup.py index 8be61e9dd..3687903b9 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==1.1.10"] + pip_packages = ["psutil", "setproctitle"] subprocess.check_call( [ sys.executable, "-m", "pip", "install", "-q",