From 8ec6deef868d1f469dc8c95d9e5e3a552a7432e7 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 10 Mar 2026 18:55:45 +0100 Subject: [PATCH 1/2] CI: Verify on Python 3.12 --- .github/workflows/tests.yml | 6 +++++- pyproject.toml | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b8a5ace..c1a3c4b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,11 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest"] - python-version: ["3.9", "3.10", "3.11"] + python-version: + - "3.9" + - "3.10" + - "3.11" + - "3.12" include: - os: "macos-latest" python-version: "3.11" diff --git a/pyproject.toml b/pyproject.toml index 83b141c..4a444ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ license = { text = "Apache-2.0" } authors = [ { name = "Andreas Motl", email = "andreas.motl@panodata.org" }, ] -requires-python = "<3.12,>=3.9" +requires-python = ">=3.9,<3.13" classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -49,6 +49,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Adaptive Technologies", "Topic :: Communications", "Topic :: Database", From fe31a59822e8a3510930ad2eb75caff361c64ad1 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 10 Mar 2026 19:00:58 +0100 Subject: [PATCH 2/2] CI: Verify on Python 3.13 and 3.14 --- .github/workflows/tests.yml | 2 ++ pyproject.toml | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c1a3c4b..6022a70 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,6 +26,8 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" + - "3.14" include: - os: "macos-latest" python-version: "3.11" diff --git a/pyproject.toml b/pyproject.toml index 4a444ff..fb253b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ license = { text = "Apache-2.0" } authors = [ { name = "Andreas Motl", email = "andreas.motl@panodata.org" }, ] -requires-python = ">=3.9,<3.13" +requires-python = ">=3.9" classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -50,6 +50,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Adaptive Technologies", "Topic :: Communications", "Topic :: Database",