From ce5636d78b62199272ded82694fc58c26f3e4690 Mon Sep 17 00:00:00 2001 From: jlnav Date: Fri, 5 Dec 2025 10:53:00 -0600 Subject: [PATCH 1/3] add python 3.14 to basic.yml --- .github/workflows/basic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 529106a47..cfa60b455 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -17,7 +17,7 @@ jobs: matrix: os: [ubuntu-latest] mpi-version: [mpich] - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] comms-type: [m, l] include: - os: macos-latest From 97f8afe7dca67b93a1ad716fdf3d2d03b78c7384 Mon Sep 17 00:00:00 2001 From: jlnav Date: Fri, 5 Dec 2025 10:56:38 -0600 Subject: [PATCH 2/3] try bumping nlopt to 2.9.1 --- .github/workflows/basic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index cfa60b455..9d756cf1d 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -60,7 +60,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | conda install -c conda-forge gcc_linux-64 - pip install nlopt==2.9.0 + pip install nlopt==2.9.1 # Roundabout solution on macos for proper linking with mpicc - name: Install macOS compilers From 1798f10a38b2acc471695a8730a9bda9d346b399 Mon Sep 17 00:00:00 2001 From: jlnav Date: Fri, 5 Dec 2025 13:31:13 -0600 Subject: [PATCH 3/3] try bumping nlopt again --- .github/workflows/basic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 9d756cf1d..4fcb7454e 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -60,7 +60,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | conda install -c conda-forge gcc_linux-64 - pip install nlopt==2.9.1 + pip install nlopt==2.10.0 # Roundabout solution on macos for proper linking with mpicc - name: Install macOS compilers