From 1a9810230488883aab7ec81cdaff096f069a8cd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Mar 2023 19:57:23 +0000 Subject: [PATCH] Update pylint requirement from ==2.12.* to >=2.12,<2.18 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.17.0) --- 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 b07bdbe1..859ce09c 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ ], extras_require={ "test": [ - "pylint==2.12.*", + "pylint>=2.12,<2.18", 'pytest==7.1.1', 'pytest-cov==3.0.0', "python-dotenv==0.19.*"