Skip to content

Commit 2c4b7c9

Browse files
fix: use pylint >=3.3.0,<4.0.0 for Python <3.10, >=4.0.0 for Python >=3.10
Agent-Logs-Url: https://github.com/kinde-oss/kinde-python-sdk/sessions/82d8a620-5ce6-4ec1-8675-d5528ea8ddc9 Co-authored-by: dtoxvanilla1991 <73205087+dtoxvanilla1991@users.noreply.github.com>
1 parent ffeff44 commit 2c4b7c9

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ dev = [
5656
"mypy >=1.5.0",
5757
"bandit >=1.7",
5858
"pylint >=4.0.0; python_version >= '3.10'",
59-
"pylint >=4, <4.1; python_version < '3.10'",
59+
"pylint >=3.3.0, <4.0.0; python_version < '3.10'",
6060
"pycodestyle >=2.0",
6161
"pytest-asyncio >=0.26.0",
6262
"pytest-timeout >=2.2.0",
@@ -94,7 +94,10 @@ coverage = ">=7.10.6"
9494
pytest-django = "^4.5.2"
9595
mypy = "^1.5.0"
9696
bandit = "^1.7"
97-
pylint = ">=4.0.0"
97+
pylint = [
98+
{version = ">=3.3.0,<4.0.0", python = "~3.9"},
99+
{version = ">=4.0.0", python = ">=3.10"}
100+
]
98101
pycodestyle = "^2.0"
99102
pytest-asyncio = "^0.26.0"
100103
pytest-timeout = "^2.2.0"

0 commit comments

Comments
 (0)