We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec404f commit 851c1d9Copy full SHA for 851c1d9
e3sm_supported_machines/templates/build.template
@@ -8,7 +8,11 @@ set -e
8
9
10
if [ "{{ build_mpi4py }}" == "True" ]; then
11
- MPICC="{{ mpicc }} -shared" python -m pip install --no-cache-dir "mpi4py=={{ mpi4py_version }}"
+ MPICC="{{ mpicc }} -shared" python -m pip install \
12
+ --no-cache-dir \
13
+ --no-binary=mpi4py \
14
+ --no-build-isolation \
15
+ "mpi4py=={{ mpi4py_version }}"
16
fi
17
18
@@ -44,4 +48,4 @@ if [ "{{ build_xesmf }}" == "True" ]; then
44
48
python -m pip install --no-deps --no-build-isolation .
45
49
46
50
cd ${build_dir}
47
-fi
51
+fi
0 commit comments