From 5f288d3f89a39c4c99fcf6b29d214ce47ce33a3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 00:43:05 +0000 Subject: [PATCH] Update pylint requirement from ==2.8.* to >=2.8,<3.3 Updates the requirements on [pylint](https://github.com/pylint-dev/pylint) to permit the latest version. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/pylint-2.8.0...v3.2.7) --- 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 16a31ff..35eb84f 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ ], extras_require={ 'test': [ - 'pylint==2.8.*', + 'pylint>=2.8,<3.3', 'pytest==6.2.*', 'pytest-cov==2.12.*', ]