From 6b348f42540f43d03f1e80ba7bad42533092b719 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Thu, 26 Dec 2024 13:52:03 +0100 Subject: [PATCH] Add support for Python 3.11-3.13 --- .github/workflows/test.yml | 3 +++ setup.py | 3 +++ tox.ini | 5 ++++- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2bad6c3..80301d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,9 @@ jobs: matrix: python-version: - "3.10" + - "3.11" + - "3.12" + - "3.13" steps: - uses: actions/checkout@v4.2.2 diff --git a/setup.py b/setup.py index 79be55c..636911d 100644 --- a/setup.py +++ b/setup.py @@ -37,5 +37,8 @@ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], ) diff --git a/tox.ini b/tox.ini index 8e0c251..6c4102f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,13 @@ [tox] -envlist = py310, lint +envlist = py310, py311, py312, py313, lint skip_missing_interpreters = True [gh-actions] python = 3.10: py310, lint + 3.11: py311 + 3.12: py312 + 3.13: py313 [testenv] commands =