From 897eedaaa7062b1d2e8525a2e7b262718b97f456 Mon Sep 17 00:00:00 2001 From: Xubin Ren Date: Sat, 16 May 2026 04:15:10 +0000 Subject: [PATCH] chore(ci): update Python version in CI workflow to focus on supported runtimes 3.13 and 3.14 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4b971d50..2a64accf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,8 @@ jobs: fail-fast: false matrix: os: ${{ github.event_name == 'pull_request' && fromJSON('["ubuntu-latest"]') || fromJSON('["ubuntu-latest","windows-latest"]') }} - python-version: ${{ github.event_name == 'pull_request' && fromJSON('["3.11","3.14"]') || fromJSON('["3.11","3.12","3.13","3.14"]') }} + # CI concentrates on newer runtimes (3.11/3.12 still supported per pyproject requires-python). + python-version: ${{ fromJSON('["3.13","3.14"]') }} steps: - uses: actions/checkout@v4