add py312 support

This commit is contained in:
pacrob
2024-01-26 11:14:40 -07:00
committed by Paul Robinson
parent 8ffe3b8900
commit b853f5ccdf
3 changed files with 28 additions and 5 deletions

11
tox.ini
View File

@ -1,8 +1,8 @@
[tox]
envlist=
py{38,39,310,311}-core
py{38,39,310,311}-lint
py{38,39,310,311}-wheel
py{38,39,310,311,312}-core
py{38,39,310,311,312}-lint
py{38,39,310,311,312}-wheel
py311-wheel-windows
docs
@ -23,18 +23,19 @@ basepython=
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
extras=
test
docs
allowlist_externals=make,pre-commit
[testenv:py{38,39,310,311}-lint]
[testenv:py{38,39,310,311,312}-lint]
deps=pre-commit
commands=
pre-commit install
pre-commit run --all-files --show-diff-on-failure
[testenv:py{38,39,310,311}-wheel]
[testenv:py{38,39,310,311,312}-wheel]
deps=
wheel
build[virtualenv]