From bb864cbd204fc6122b044b8ae327a71212f8d8a2 Mon Sep 17 00:00:00 2001 From: Jiri Konecny Date: Thu, 13 Jul 2023 13:42:24 +0200 Subject: [PATCH] infra: Disable pylint for python 3.12 Right now it's completely broken. Let's use only ruff for some time. We can return pylint back when it stabilize on python 3.12. The biggest issue is the astroid library which will have 3.12 support with version 3.0.0. --- tests/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 746925a533a..f2025e0cfaa 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -62,7 +62,7 @@ dist_check_SCRIPTS = \ pep8/runpep8.sh \ ruff/run_ruff.sh - +# TODO: Return back pylint/runpylint.py when it works on python 3.12 TESTS = \ cppcheck/runcppcheck.sh \ gettext_tests/click.py \ @@ -72,8 +72,7 @@ TESTS = \ glade_tests/glade_tests.sh \ shellcheck/run_shellcheck.sh \ ruff/run_ruff.sh \ - unit_tests/unit_tests.sh \ - pylint/runpylint.py + unit_tests/unit_tests.sh clean-local: -rm -rf pylint/.pylint.d