From 9f74f30768def1ebf471edac079e85c209c599d4 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 25 Oct 2025 14:27:30 +0200 Subject: [PATCH] GitHub Actions: Add Python 3.13 and 3.14 to the testing --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8f167d1859..263d98c03a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"] runs-on: ubuntu-20.04 env: @@ -23,9 +23,9 @@ jobs: CONCURRENT_ID: "${{ github.run_number }}${{ strategy.job-index }}" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.version }} - name: Install dependencies