From 057d541928b39cae93d6922a2856e95d27f5bc19 Mon Sep 17 00:00:00 2001 From: "Benedikt J. Daurer" Date: Wed, 31 Jul 2024 16:53:23 +0100 Subject: [PATCH] using mpich as default MPI backend (#567) --- .github/workflows/test.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89d6dc04e..7dcd56142 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,12 +57,13 @@ jobs: if [ ${{ matrix.conda-env }} == 'full' ] && [ ${{ matrix.python-version }} == '3.12' ]; then sed -i '/- pyfftw/d' dependencies_${{ matrix.conda-env }}.yml fi - if [ ${{ matrix.conda-env }} == 'full' ] && [ ${{ matrix.python-version }} == '3.8' ]; then - sed -i '/- mpi4py/d' dependencies_${{ matrix.conda-env }}.yml - fi - if [ ${{ matrix.conda-env }} == 'full' ] && [ ${{ matrix.python-version }} == '3.9' ]; then - sed -i '/- mpi4py/d' dependencies_${{ matrix.conda-env }}.yml - fi + # if [ ${{ matrix.conda-env }} == 'full' ] && [ ${{ matrix.python-version }} == '3.8' ]; then + # sed -i '/- mpi4py/d' dependencies_${{ matrix.conda-env }}.yml + # fi + # if [ ${{ matrix.conda-env }} == 'full' ] && [ ${{ matrix.python-version }} == '3.9' ]; then + # sed -i '/- mpi4py/d' dependencies_${{ matrix.conda-env }}.yml + # fi + conda install --solver=classic mpich conda env update --file dependencies_${{ matrix.conda-env }}.yml --name base conda install --solver=classic flake8 pytest pytest-cov conda list