From 6614778a5c72dc7095ca7cdc6a7006b949191e7f Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Mon, 7 Feb 2022 14:34:38 -0600 Subject: [PATCH] Revert "mpi4py workaround (#143)" This reverts commit cae95cf633e834e60c111ca471e288ec238d55da. The underlying setuptools bug has been fixed: https://github.com/pypa/setuptools/pull/2987 --- install-pip-dependencies.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/install-pip-dependencies.sh b/install-pip-dependencies.sh index 5a19250..1b59c2c 100755 --- a/install-pip-dependencies.sh +++ b/install-pip-dependencies.sh @@ -37,8 +37,4 @@ if [[ $(mpicc --version) == "IBM XL"* ]]; then exit 1 fi -# Workaround for https://github.com/mpi4py/mpi4py/issues/157 -# Revisit this by Feb 2022 -export SETUPTOOLS_USE_DISTUTILS=stdlib - pip install --src . -r "$requirements_file"