From 0bdb056c046cad0142a7456e53efa7d9aeae3f1c Mon Sep 17 00:00:00 2001 From: Henry Webel Date: Wed, 24 Sep 2025 20:44:53 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=91=B7=20only=20use=20Python=203.10?= =?UTF-8?q?=20as=20minimal=20version=20in=20CI=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8d76536ba..96639852f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: "macos-13", # "windows-latest" # rrcovNA cannot be build from source on windows-server ] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout uses: actions/checkout@v4 From dc5b3733fe674a6992e2f4abb865eb6442c57e39 Mon Sep 17 00:00:00 2001 From: Henry Webel Date: Wed, 24 Sep 2025 21:00:30 +0200 Subject: [PATCH 2/2] :bug: update images to use latest tag, remove one more 3.9 --- .github/workflows/ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 96639852f..c6a8f9763 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,6 +8,9 @@ on: types: [published] schedule: - cron: '0 2 * * 3,6' + +# runner images: +# https://github.com/actions/runner-images jobs: run-unit-and-integration-tests-with-conda-install: runs-on: ${{ matrix.os }} @@ -18,7 +21,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", - "macos-13", + "macos-latest", # "windows-latest" # rrcovNA cannot be build from source on windows-server ] python-version: ["3.10", "3.11", "3.12"] @@ -76,7 +79,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 with: