From 466a53abde3147c40e6982780dd36327a964acd8 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Thu, 19 Oct 2023 08:43:05 -0600 Subject: [PATCH 1/3] add python 3.12, remove python 3.7 --- .github/workflows/miniconda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/miniconda.yml b/.github/workflows/miniconda.yml index 8db0307f1..0455acf27 100644 --- a/.github/workflows/miniconda.yml +++ b/.github/workflows/miniconda.yml @@ -12,7 +12,7 @@ jobs: # NO_NET: 1 strategy: matrix: - python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.8", "3.9", "3.10", "3.11" "3.12" ] os: [windows-latest, ubuntu-latest, macos-latest] platform: [x64, x32] exclude: From a01a60409e16887c8f68aa379741e6d48e437081 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Thu, 19 Oct 2023 11:45:45 -0600 Subject: [PATCH 2/3] fix typo --- .github/workflows/miniconda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/miniconda.yml b/.github/workflows/miniconda.yml index 0455acf27..3ad5eacea 100644 --- a/.github/workflows/miniconda.yml +++ b/.github/workflows/miniconda.yml @@ -12,7 +12,7 @@ jobs: # NO_NET: 1 strategy: matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11" "3.12" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] os: [windows-latest, ubuntu-latest, macos-latest] platform: [x64, x32] exclude: From 546dfd65159dcc708d9c1d39a14c964f4d682346 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Thu, 19 Oct 2023 12:59:00 -0600 Subject: [PATCH 3/3] remove 'oversubscribe' option from mpirun --- .github/workflows/miniconda.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/miniconda.yml b/.github/workflows/miniconda.yml index 3ad5eacea..03f982b3c 100644 --- a/.github/workflows/miniconda.yml +++ b/.github/workflows/miniconda.yml @@ -79,8 +79,8 @@ jobs: export PATH="${CONDA_PREFIX}/bin:${CONDA_PREFIX}/Library/bin:$PATH" which mpirun mpirun --version - mpirun -np 4 --oversubscribe python mpi_example.py # for openmpi - #mpirun -np 4 python mpi_example.py + #mpirun -np 4 --oversubscribe python mpi_example.py # for openmpi + mpirun -np 4 python mpi_example.py if [ $? -ne 0 ] ; then echo "hdf5 mpi test failed!" exit 1