From 252d62d2b638b170a28dbb9f1b5c66c309ea0070 Mon Sep 17 00:00:00 2001 From: rohanbabbar04 Date: Sat, 13 Apr 2024 22:30:21 +0530 Subject: [PATCH 1/2] Add tests for python 3.12 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0afae5be..326357c9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] mpi: ['mpich', 'openmpi', 'intelmpi'] exclude: - os: macos-latest From 9e40703aa094cbab49cdde7f6bb89602a628d9bb Mon Sep 17 00:00:00 2001 From: rohanbabbar04 Date: Sat, 13 Apr 2024 22:51:30 +0530 Subject: [PATCH 2/2] Upgrade versions of checkout and setup-python --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 326357c9..6c2b4a22 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get history and tags for SCM versioning to work run: | git fetch --prune --unshallow @@ -42,7 +42,7 @@ jobs: with: mpi: ${{ matrix.mpi }} - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Installing Dependencies