From 708b5268325f022939b277d2cb8bffc8bfab77ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Aug 2022 19:04:03 +0000 Subject: [PATCH] Update pylint requirement from ==2.12.* to >=2.12,<2.16 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.15.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 36e848b5..79898772 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ ], extras_require={ "test": [ - "pylint==2.12.*", + "pylint>=2.12,<2.16", 'pytest==7.1.1', 'pytest-cov==3.0.0', "python-dotenv==0.19.*"