tox.ini: update autopep8/pyocdestyle to support py3.12

This commit is contained in:
Michael Vogt 2024-03-13 15:09:37 +01:00 committed by Ondřej Budai
parent c7c5a4d8e6
commit 3dd12931e4

View file

@ -1,11 +1,11 @@
[tox]
env_list =
py{36,37,38,39,310,311}
py{36,37,38,39,310,311,312}
lint
type
labels =
test = py{36,37,38,39,310,311}
test = py{36,37,38,39,310,311,312}
lint = ruff, autopep8, pylint
type = mypy,mypy-strict
@ -47,8 +47,8 @@ commands =
[testenv:autopep8]
deps =
autopep8==2.0.2
pycodestyle==2.10.0
autopep8==2.0.4
pycodestyle==2.11.0
commands =
bash -c 'python -m autopep8 --diff --max-line-length 120 -a -a -a -j0 -r --exit-code {env:LINTABLES}'