From 2771bb141cc75b71483908ea55aeb220f8ee73a2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 9 Oct 2025 10:35:04 +0200 Subject: [PATCH] GitHub Actions: Add Python 3.14 and 3.14t to the testing https://www.python.org/downloads/release/python-3140/ --- .github/workflows/main.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 44eeffa..9806e91 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -13,15 +13,15 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy-3.10] - os: [macOS-latest, ubuntu-latest, windows-latest] + python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, 3.14, 3.14t, pypy-3.11] + os: [macos-latest, ubuntu-latest, windows-latest] steps: - name: Checkout - 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 }} cache: pip @@ -54,12 +54,12 @@ jobs: id-token: write steps: - name: Download dists for PyPI - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ubuntu-latest_3.11_dist path: dist - - name: Display structure of donwloaded files + - name: Display structure of downloaded files run: ls -R - name: Publish package