From 1505a0e3c50ba8c5f332a7080a9640265a7bcf00 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 14 Mar 2024 11:07:11 +0100 Subject: [PATCH] pyproject: support py3.12 via new version of pycodestyle autopep8 had some issues with python3.12. It seems just moving to the latest version of pycodestyle does fix the issue. Closes: https://github.com/hhatto/autopep8/issues/712 Thanks: "hruskape" on github --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 70f29f3a..6f66ca6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ ] requires-python = ">=3.6" dependencies = [ - "pycodestyle >= 2.10.0", + "pycodestyle >= 2.11.0", "tomli; python_version < '3.11'", ] dynamic = ["version"]