From 6f708e24b32e60e9aa6286c1378fb323c82c6e71 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 31 Aug 2025 09:35:06 +0200 Subject: [PATCH 1/4] Update Python versions and GitHub actions versions --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index edc1211..a370b94 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,17 +26,18 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - python_version: ["3.9", "3.10", "3.11", "3.12"] + python_version: ["3.9", "3.10", "3.11", "3.12", "3.x", "3.14"] runs-on: ${{ matrix.os }} steps: - name: Check out repo - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Configure Python version - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python_version }} architecture: x64 + allow-prereleases: true - name: Build sdist run: | From 66736517714f3f6b52eafc1db12707f533e98364 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 15 Oct 2025 18:52:27 +0200 Subject: [PATCH 2/4] setup.cfg: python_requires = >=3.9,<3.15 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 350d943..fe5f34a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,7 +27,7 @@ classifiers = [options] zip_safe = true include_package_data = true -python_requires = >=3.9,<3.14 +python_requires = >=3.9,<3.15 setup_requires = cython>=0.29.1 install_requires = From e793fef7d71c82802e0997f1e0cfdec42590725f Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 18 Nov 2025 12:32:25 +0100 Subject: [PATCH 3/4] Update .github/workflows/tests.yml Co-authored-by: Guido Imperiale --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a370b94..f5b0833 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,7 +26,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - python_version: ["3.9", "3.10", "3.11", "3.12", "3.x", "3.14"] + python_version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] runs-on: ${{ matrix.os }} steps: From 2e94fbbb341e9c435da6536778a2bee9e4ade5d4 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 18 Nov 2025 12:32:37 +0100 Subject: [PATCH 4/4] Update .github/workflows/tests.yml Co-authored-by: Guido Imperiale --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f5b0833..90356ac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,7 +37,6 @@ jobs: with: python-version: ${{ matrix.python_version }} architecture: x64 - allow-prereleases: true - name: Build sdist run: |