From f45b431a2118c9a53e9eeffd1fb678f7a907309b Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 30 Jan 2023 23:18:07 -0600 Subject: [PATCH] Use --no-build-isolation to get around parallel h5py install issue See https://github.com/h5py/h5py/issues/2222 --- tools/ci/gha-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ci/gha-install.sh b/tools/ci/gha-install.sh index 4042977c9..7854a9dfc 100755 --- a/tools/ci/gha-install.sh +++ b/tools/ci/gha-install.sh @@ -43,7 +43,8 @@ if [[ $MPI == 'y' ]]; then export CC=mpicc export HDF5_MPI=ON export HDF5_DIR=/usr/lib/x86_64-linux-gnu/hdf5/mpich - pip install --no-binary=h5py h5py + pip install wheel cython + pip install --no-binary=h5py --no-build-isolation h5py fi # Build and install OpenMC executable