From 1eca9f2d7ce9776c9a6141e1024863863209617f Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Mon, 6 Jan 2025 19:05:46 -0700 Subject: [PATCH] update Python versions gh-ci-cron.yaml (#4845) - remove Python 3.9 - add 3.13 to PyPi installation - hold off on 3.13 for conda because of #4805 --- .github/workflows/gh-ci-cron.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/gh-ci-cron.yaml b/.github/workflows/gh-ci-cron.yaml index 230a99dbb7..f35df0f252 100644 --- a/.github/workflows/gh-ci-cron.yaml +++ b/.github/workflows/gh-ci-cron.yaml @@ -237,9 +237,11 @@ jobs: fail-fast: false matrix: # Stick to macos-13 because some of our - # optional depss don't support arm64 (i.e. macos-14) + # optional deps don't support arm64 (i.e. macos-14) + # + # add "3.13" once conda-forge packages are available (see #4805) os: [ubuntu-latest, macos-13] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 @@ -285,11 +287,8 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, macos-14, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] wheels: ['true', 'false'] - exclude: - - os: "macos-14" - python-version: "3.9" steps: # Checkout to have access to local actions (i.e. setup-os) - uses: actions/checkout@v4