From ffeff441b0e589a692732db8a3205486dce9b3f5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 13:35:25 +0000 Subject: [PATCH 1/2] fix(deps): update dependency pylint to v4 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cf2f04e7..d4907f4d 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 >=4, <4.1; python_version < '3.10'", "pycodestyle >=2.0", "pytest-asyncio >=0.26.0", "pytest-timeout >=2.2.0", From 2c4b7c9fcb2e300b95e6d8a8dfe90724f46e5578 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 1 May 2026 22:41:13 +0000 Subject: [PATCH 2/2] 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> --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d4907f4d..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 >=4, <4.1; 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"