From b06e4d4bd86b2ff0a91bfc0944b861cd7e710012 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Sat, 28 Dec 2024 11:54:11 +0100 Subject: [PATCH] Add support for Python 3.11-3.13 (#489) --- .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 =