From e8f67172cd843b95039135dd37ac5940a0aead2d 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. --- README.md | 2 +- requirements.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac9c894..0d33b4e 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ The lintner versions are: ```bash pycodestyle==2.8.0 pydocstyle==6.1.1 -pylint==2.12.1 +pylint==3.1.0 mypy==0.910 black==21.11b1 flake8==4.0.1 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