diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index efc720f..086c7e3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,6 +31,8 @@ jobs: python-version: '3.10' - PY_VER: py311 python-version: '3.11' + - PY_VER: py312 + python-version: '3.12' # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/setup.py b/setup.py index f70b9bf..d70fbfb 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ def get_version_data() -> dict: "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Development Status :: 4 - Beta", diff --git a/tox.ini b/tox.ini index 7318501..3e84ba3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,9 @@ [tox] envlist = - {py38,py39,py310,py311}, + {py38,py39,py310,py311, py312}, lint -[testenv:{py38, py39, py310, py311}] +[testenv:{py38, py39, py310, py311, py312}] usedevelop=True deps = -rrequirements/tests.txt commands = pytest -vv {posargs} --cov=inori --cov-append tests