From 598262bd3d5c3a76137f292f4967765a3a3d7cc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:00:48 +0000 Subject: [PATCH] Update pylint requirement from ==2.12.* to >=2.12,<2.17 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.16.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 48f65ea..26229c0 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ extras_require={ "test": [ 'pytest==7.2.0', - 'pylint==2.12.*', + 'pylint>=2.12,<2.17', 'pytest-cov==4.0.0' ] },