diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index bdfee59..2d09f9e 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index a8de56a..fc04ae3 100644 --- a/setup.py +++ b/setup.py @@ -108,6 +108,8 @@ def find_meta(meta): "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", "License :: OSI Approved :: Apache Software License" ], test_suite='tests', diff --git a/tox.ini b/tox.ini index 81d2f2b..0ac3f22 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,12 @@ [tox] -envlist = py39, py310, py311 +envlist = py39, py310, py311, py312, py313 skipsdist = True usedevelop = True [gh-actions] python = + 3.13: py313 + 3.12: py312 3.11: py311 3.10: py310 3.9: py39