From 80449343bd61f03c1fc8e1177be4a0f4604e4238 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Wed, 3 Sep 2025 12:34:18 +0200 Subject: [PATCH 1/2] Add Python 3.14 to the github workflows --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07f3de8..667eb11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 From a768fa5e72bc0c8d8aaca36a733732cc9675ad40 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Tue, 9 Sep 2025 21:43:42 +0200 Subject: [PATCH 2/2] GitHub workflow: Python 3.14 pre-release --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 667eb11..455838a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install Flake8 @@ -39,9 +39,11 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true + check-latest: true - name: Run Tests run: | python -m unittest discover