From 695c0454a8b585b07e061dc06b7ae148554c30ae Mon Sep 17 00:00:00 2001 From: Jan Breuer <74359367+jbreue16@users.noreply.github.com> Date: Thu, 15 Jan 2026 15:19:37 +0100 Subject: [PATCH 1/3] CI: update macOS runner to macos-15 --- .github/workflows/pipeline.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 3c5f8c0..3d6d178 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -17,13 +17,8 @@ jobs: strategy: matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest, macos-15] # Added macos-15 here python-version: ["3.10", "3.11", "3.12"] - include: - - os: windows-latest - python-version: "3.12" - - os: macos-13 - python-version: "3.12" steps: - uses: actions/checkout@v4 From 6842362ed81131a7a70dc4121fef2abfeab77f71 Mon Sep 17 00:00:00 2001 From: Jan Breuer <74359367+jbreue16@users.noreply.github.com> Date: Thu, 15 Jan 2026 15:23:26 +0100 Subject: [PATCH 2/3] fixup! --- .github/workflows/pipeline.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 3d6d178..64b3e81 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -17,8 +17,13 @@ jobs: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-15] # Added macos-15 here + os: [ubuntu-latest] python-version: ["3.10", "3.11", "3.12"] + include: + - os: windows-latest + python-version: "3.12" + - os: macos-15 + python-version: "3.12" steps: - uses: actions/checkout@v4 From ec85f2c3a2faee3dc8db97c20e4cd5801fc9bdd9 Mon Sep 17 00:00:00 2001 From: Jan Breuer <74359367+jbreue16@users.noreply.github.com> Date: Thu, 15 Jan 2026 15:30:52 +0100 Subject: [PATCH 3/3] fixup! make it latest --- .github/workflows/pipeline.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 64b3e81..061027a 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -22,7 +22,7 @@ jobs: include: - os: windows-latest python-version: "3.12" - - os: macos-15 + - os: macos-latest python-version: "3.12" steps: @@ -74,3 +74,4 @@ jobs: conda run pip install .[testing] conda install -c conda-forge cadet>=5.0.3 pytest tests --rootdir=tests -m "not slow and not local" +