diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c526d81f..95b1894e 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 e321486e..ff57a111 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,9 @@ # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] CONFIG = { diff --git a/tox.ini b/tox.ini index f7db0380..cd728717 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,13 @@ [tox] -envlist = py310, lint, docs +envlist = py310, py311, py312, py313, lint, docs skip_missing_interpreters = True [gh-actions] python = 3.10: py310, docs, lint + 3.11: py311 + 3.12: py312 + 3.13: py313 [testenv] commands =