From 13f13db63de119f51ac89a58f9310ef0eaa1fb83 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Tue, 26 Mar 2024 19:57:32 -0400 Subject: [PATCH] Update pylint from 2.12.1 to 3.1.0 When trying to add Python 3.11 and 3.12, tests failed due to a dependency chain issue with the chain starting at pylint and ending at an outdated version of wrapt that did not support Python 3.11+. The earliest version of pylint with an updated version of wrapt is pylint 2.15. However, pylint 3.1.0 is the current version, so use that instead. --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 73b61ff..80c2ceb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,5 +4,5 @@ isort==5.10.1 mypy~=0.961 pycodestyle==2.8.0 pydocstyle==6.1.1 -pylint==2.12.1 -vulture==2.3 \ No newline at end of file +pylint==3.1.0 +vulture==2.3