From 010bf19e3a6d49e06b44a21763f021c13d81e869 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 23:03:54 +0000 Subject: [PATCH] Update pylint requirement from ==2.12.* to >=2.12,<2.15 Updates the requirements on [pylint](https://github.com/PyCQA/pylint) to permit the latest version. - [Release notes](https://github.com/PyCQA/pylint/releases) - [Commits](https://github.com/PyCQA/pylint/compare/v2.12.0...v2.14.1) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d10135ac..fc8dd100 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ extras_require={ "test": [ 'pytest==7.0.1', - 'pylint==2.12.*', + 'pylint>=2.12,<2.15', 'pytest-cov==3.0.0' ] },