diff --git a/pyproject.toml b/pyproject.toml index cf2f04e7..e9e8519f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ dev = [ "mypy >=1.5.0", "bandit >=1.7", "pylint >=4.0.0; python_version >= '3.10'", - "pylint >=2.0, <4.0; python_version < '3.10'", + "pylint >=3.3.0, <4.0.0; python_version < '3.10'", "pycodestyle >=2.0", "pytest-asyncio >=0.26.0", "pytest-timeout >=2.2.0", @@ -94,7 +94,10 @@ coverage = ">=7.10.6" pytest-django = "^4.5.2" mypy = "^1.5.0" bandit = "^1.7" -pylint = ">=4.0.0" +pylint = [ + {version = ">=3.3.0,<4.0.0", python = "~3.9"}, + {version = ">=4.0.0", python = ">=3.10"} +] pycodestyle = "^2.0" pytest-asyncio = "^0.26.0" pytest-timeout = "^2.2.0"