From a5eafdb2859ad375c128958597f1912a65032507 Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Tue, 8 Nov 2022 12:11:29 -0500 Subject: [PATCH] Update pylint version check reference --- adabot/lib/circuitpython_library_validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adabot/lib/circuitpython_library_validators.py b/adabot/lib/circuitpython_library_validators.py index 64d1bef..74af638 100644 --- a/adabot/lib/circuitpython_library_validators.py +++ b/adabot/lib/circuitpython_library_validators.py @@ -557,7 +557,7 @@ def _validate_pre_commit_config_yaml(self, file_info): errors.append(ERROR_PRE_COMMIT_VERSION) pylint_repo = "repo: https://github.com/pycqa/pylint" - pylint_version = "rev: v2.11.1" + pylint_version = "rev: v2.15.5" if pylint_repo not in text or pylint_version not in text: errors.append(ERROR_PYLINT_VERSION)