chore(ci): update Python version in CI workflow to focus on supported runtimes 3.13 and 3.14

This commit is contained in:
Xubin Ren 2026-05-16 04:15:10 +00:00
parent 18072856ec
commit 897eedaaa7

View File

@ -21,7 +21,8 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: ${{ github.event_name == 'pull_request' && fromJSON('["ubuntu-latest"]') || fromJSON('["ubuntu-latest","windows-latest"]') }} 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: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4