fix: add Python 3.14 and threaded versions, update actions

This commit is contained in:
scito
2025-09-19 11:47:14 +02:00
committed by Roland Kurmann
parent 5febef269a
commit d6677623ec
3 changed files with 14 additions and 14 deletions

View File

@@ -21,16 +21,16 @@ jobs:
strategy:
matrix:
# 3.x is used to run code coverage
python-version: ["3.x", "3.13", "3.12", "3.11", "3.10", "3.9"]
python-version: ["3.x", "3.14", "3.14t", "3.13", "3.13t", "3.12", "3.11", "3.10", "3.9"]
platform: [ubuntu-latest, macos-latest, windows-latest, ubuntu-24.04-arm, macos-13]
# exclude:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
check-latest: ${{ github.event_name == 'schedule' }}