diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b8a5ace..6022a70 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,13 @@ 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" + - "3.13" + - "3.14" include: - os: "macos-latest" python-version: "3.11" diff --git a/pyproject.toml b/pyproject.toml index 83b141c..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.12,>=3.9" +requires-python = ">=3.9" classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -49,6 +49,9 @@ classifiers = [ "Programming Language :: Python :: 3.9", "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",