From bd429b6d70e16272060b981d130b662b736b9d05 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 15 Nov 2023 10:03:43 +0100 Subject: [PATCH] tox: move to pylint 3.0.2 for py312 support With python 3.12 our pylint version breaks because of https://github.com/pylint-dev/astroid/issues/2201 This is fixed in 3.0.0a6 but it seems sensible to move to 3.0.2. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a60f7bd51..0175864d2 100644 --- a/tox.ini +++ b/tox.ini @@ -59,7 +59,7 @@ commands = [testenv:pylint] deps = - pylint==2.17.3 + pylint==3.0.2 commands = bash -c 'python -m pylint {env:LINTABLES}'