We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d49a63f + 49668f1 commit 15d8f16Copy full SHA for 15d8f16
1 file changed
pyproject.toml
@@ -56,7 +56,7 @@ dev = [
56
"mypy >=1.5.0",
57
"bandit >=1.7",
58
"pylint >=4.0.0; python_version >= '3.10'",
59
- "pylint >=2.0, <4.0; python_version < '3.10'",
+ "pylint >=3.3.0, <4.0.0; python_version < '3.10'",
60
"pycodestyle >=2.0",
61
"pytest-asyncio >=0.26.0",
62
"pytest-timeout >=2.2.0",
@@ -94,7 +94,10 @@ coverage = ">=7.10.6"
94
pytest-django = "^4.5.2"
95
mypy = "^1.5.0"
96
bandit = "^1.7"
97
-pylint = ">=4.0.0"
+pylint = [
98
+ {version = ">=3.3.0,<4.0.0", python = "~3.9"},
99
+ {version = ">=4.0.0", python = ">=3.10"}
100
+]
101
pycodestyle = "^2.0"
102
pytest-asyncio = "^0.26.0"
103
pytest-timeout = "^2.2.0"
0 commit comments