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 =