From 1fc5a0986f9ab7e5b54194a218d3e67cf71e6fa9 Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Wed, 27 Sep 2023 15:39:21 -0500 Subject: [PATCH] export MPI4PY_BUILD_CONFIGURE (#167) --- install-pip-dependencies.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install-pip-dependencies.sh b/install-pip-dependencies.sh index baf1ec2..73eaf23 100755 --- a/install-pip-dependencies.sh +++ b/install-pip-dependencies.sh @@ -37,4 +37,7 @@ if [[ $(mpicc --version) == "IBM XL"* ]]; then exit 1 fi + +# Install the packages from the requirements file +export MPI4PY_BUILD_CONFIGURE=1 pip install --src . -r "$requirements_file"