From ce922f3859763ad1bbabc929467f88967dcd9f04 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 7 Nov 2024 13:25:57 +0100 Subject: [PATCH 1/2] Add Python 3.12 and 3.13 to the testing --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 1b4ee3f5..9d2ccc78 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -36,7 +36,7 @@ jobs: max-parallel: 5 matrix: os: [ubuntu-latest] - python-version: [3.7, 3.8, 3.9, '3.10', 3.11] + python-version: [3.9, '3.10', 3.11, 3.12, 3.13] steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 From bdb1751adff689db78048d2b7151159ac8a094bf Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 21 Sep 2025 10:18:31 +0200 Subject: [PATCH 2/2] Upgrade GitHub Actions versions and Python settings Updated GitHub Actions to use newer versions of checkout and setup-python actions, and adjusted Python version specifications. --- .github/workflows/integration.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 9d2ccc78..889c75c0 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -17,10 +17,10 @@ jobs: matrix: check: [bluecheck, doc8, docs, flake8, isortcheck, rstcheck] steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 with: - python-version: '3.10' + python-version: 3.x - name: Setup tox run: | pip install --upgrade pip @@ -36,12 +36,13 @@ jobs: max-parallel: 5 matrix: os: [ubuntu-latest] - python-version: [3.9, '3.10', 3.11, 3.12, 3.13] + python-version: ['3.10', 3.11, 3.12, 3.13, 3.14] steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Setup tox run: | pip install --upgrade pip