From cbaaacb5e32277a92ddd986ba7b010b01b729c64 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 16 Jun 2025 23:21:57 +0200 Subject: [PATCH 1/2] GitHub Actions: Add Python 3.13 to the testing --- .github/workflows/python-package.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 678fe6a..f33dfaf 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -1,5 +1,5 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions +# This workflow will install Python dependencies, run tests, and lint with a variety of Python versions +# For more information, see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package @@ -16,10 +16,10 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', 3.8, 3.9, '3.10', '3.11', '3.12'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.7 from deadsnakes if: matrix.python-version == '3.7' @@ -34,7 +34,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} if: matrix.python-version != '3.7' - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} From 66291cf40c0eb8826fdb997b50216f7a902b79ca Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 19 Sep 2025 08:35:12 +0200 Subject: [PATCH 2/2] Add Python 3.14 to workflow matrix --- .github/workflows/python-package.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index f33dfaf..8be88f8 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] steps: - uses: actions/checkout@v4 @@ -37,6 +37,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install dependencies run: |