From 3dd12931e4eafb8e7a4554280f1e05ddd6d92d13 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 13 Mar 2024 15:09:37 +0100 Subject: [PATCH] tox.ini: update autopep8/pyocdestyle to support py3.12 --- tox.ini | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index eb07aed0..90b1f586 100644 --- a/tox.ini +++ b/tox.ini @@ -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}'