update setproctitle to use with py39

This commit is contained in:
acxz
2020-12-16 22:42:31 -05:00
parent 2b38938305
commit c8d14eb3c5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -333,7 +333,7 @@ install_dependencies() {
install_node install_node
fi 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 "$@" install_dependencies "$@"
+1 -1
View File
@@ -270,7 +270,7 @@ def build(build_python, build_java):
# that certain flags will not be passed along such as --user or sudo. # that certain flags will not be passed along such as --user or sudo.
# TODO(rkn): Fix this. # TODO(rkn): Fix this.
if not os.getenv("SKIP_THIRDPARTY_INSTALL"): if not os.getenv("SKIP_THIRDPARTY_INSTALL"):
pip_packages = ["psutil", "setproctitle==1.1.10"] pip_packages = ["psutil", "setproctitle"]
subprocess.check_call( subprocess.check_call(
[ [
sys.executable, "-m", "pip", "install", "-q", sys.executable, "-m", "pip", "install", "-q",