From f8b9901f53467af28c38d1f517b3a769142926e6 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Sat, 8 Nov 2025 11:36:01 +0100 Subject: [PATCH] Permit to use pylint 4+, bump own version --- CHANGELOG.rst | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e17a76e..37cd0d7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,13 +5,15 @@ Changelog Version 2.6.2 ------------- +We added support for pylint 4.0.0+. + Other ~~~~~ - CI now tests against Django 5.2 - CI now tests against python 3.13 - CI now tests against python 3.14 - +- CI now tests against pylint 4.0.0+ Version 2.6.1 ------------- diff --git a/pyproject.toml b/pyproject.toml index a90b00f..5a9cb14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ exclude = [ "**/tests/**", "**/testutils.py", "**/tests.py" ] [tool.poetry.dependencies] python = ">=3.9,<4.0" pylint-plugin-utils = ">=0.8" -pylint = ">=3.0,<4" +pylint = ">=3.0,<5" Django = { version = ">=2.2", optional = true } [tool.poetry.group.dev.dependencies]