From 1a11b126b4bb554e1a3e05802ee38eadaf8c8b6e Mon Sep 17 00:00:00 2001 From: George Dang <53052793+gtdang@users.noreply.github.com> Date: Thu, 21 Nov 2024 17:27:18 -0500 Subject: [PATCH] ci: remove mpi4py install from gh actions --- .github/workflows/unix_unit_tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unix_unit_tests.yml b/.github/workflows/unix_unit_tests.yml index 1e6ff5330..9ebd241f9 100644 --- a/.github/workflows/unix_unit_tests.yml +++ b/.github/workflows/unix_unit_tests.yml @@ -43,12 +43,9 @@ - name: Install Python dependencies shell: bash -el {0} run: | + python -m pip install --upgrade pip if [ ${{ matrix.os }} == 'macos-latest' ]; then - python -m pip install --upgrade pip - conda install --yes -c conda-forge mpi4py openmpi - elif [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then - python -m pip install --upgrade pip - python -m pip install mpi4py + conda install --yes -c conda-forge openmpi fi - name: Install HNN-core shell: bash -el {0}