From 2608a4e8dbaf47609ecc4726eb0e58ed4ebc0420 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 18 Jan 2026 08:21:03 -0500 Subject: [PATCH] Update dependency pylint to v4 (#424) * Update dependency pylint to v4 * Ignore too-many-positional-arguments --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dave Gallant --- poetry.lock | 28 ++++++++++++++-------------- pyproject.toml | 2 +- rfd_notify/models/topic.py | 1 + 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/poetry.lock b/poetry.lock index 27e9c4e..0ab77b0 100644 --- a/poetry.lock +++ b/poetry.lock @@ -28,18 +28,18 @@ windows = ["pywin32", "tzdata"] [[package]] name = "astroid" -version = "3.2.4" +version = "4.0.3" description = "An abstract syntax tree for Python with inference support." optional = false -python-versions = ">=3.8.0" +python-versions = ">=3.10.0" groups = ["dev"] files = [ - {file = "astroid-3.2.4-py3-none-any.whl", hash = "sha256:413658a61eeca6202a59231abb473f932038fbcbf1666587f66d482083413a25"}, - {file = "astroid-3.2.4.tar.gz", hash = "sha256:0e14202810b30da1b735827f78f5157be2bbd4a7a59b7707ca0bfc2fb4c0063a"}, + {file = "astroid-4.0.3-py3-none-any.whl", hash = "sha256:864a0a34af1bd70e1049ba1e61cee843a7252c826d97825fcee9b2fcbd9e1b14"}, + {file = "astroid-4.0.3.tar.gz", hash = "sha256:08d1de40d251cc3dc4a7a12726721d475ac189e4e583d596ece7422bc176bda3"}, ] [package.dependencies] -typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4", markers = "python_version < \"3.11\""} [[package]] name = "black" @@ -626,28 +626,28 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pylint" -version = "3.2.6" +version = "4.0.4" description = "python code static checker" optional = false -python-versions = ">=3.8.0" +python-versions = ">=3.10.0" groups = ["dev"] files = [ - {file = "pylint-3.2.6-py3-none-any.whl", hash = "sha256:03c8e3baa1d9fb995b12c1dbe00aa6c4bcef210c2a2634374aedeb22fb4a8f8f"}, - {file = "pylint-3.2.6.tar.gz", hash = "sha256:a5d01678349454806cff6d886fb072294f56a58c4761278c97fb557d708e1eb3"}, + {file = "pylint-4.0.4-py3-none-any.whl", hash = "sha256:63e06a37d5922555ee2c20963eb42559918c20bd2b21244e4ef426e7c43b92e0"}, + {file = "pylint-4.0.4.tar.gz", hash = "sha256:d9b71674e19b1c36d79265b5887bf8e55278cbe236c9e95d22dc82cf044fdbd2"}, ] [package.dependencies] -astroid = ">=3.2.4,<=3.3.0-dev0" +astroid = ">=4.0.2,<=4.1.dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} dill = [ {version = ">=0.2", markers = "python_version < \"3.11\""}, {version = ">=0.3.7", markers = "python_version >= \"3.12\""}, {version = ">=0.3.6", markers = "python_version == \"3.11\""}, ] -isort = ">=4.2.5,<5.13.0 || >5.13.0,<6" +isort = ">=5,<5.13 || >5.13,<8" mccabe = ">=0.6,<0.8" -platformdirs = ">=2.2.0" -tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +platformdirs = ">=2.2" +tomli = {version = ">=1.1", markers = "python_version < \"3.11\""} tomlkit = ">=0.10.1" [package.extras] @@ -962,4 +962,4 @@ dev = ["black (>=19.3b0) ; python_version >= \"3.6\"", "pytest (>=4.6.2)"] [metadata] lock-version = "2.1" python-versions = "^3.10" -content-hash = "3ae4fa9478ced061a02a3a138385cd894216a2222131dc444308cb690f499e61" +content-hash = "65ac5519a8542174ee750e104b17cab5a14d2bb9b40ce18ecab0c574c476394b" diff --git a/pyproject.toml b/pyproject.toml index f2b20cb..95cb2ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ humanize = "^4.12.1" [tool.poetry.group.dev.dependencies] pytest = "^9.0.0" black = "^26.0.0" -pylint = "^3.0.3" +pylint = "^4.0.0" rope = "^1.11.0" mypy = "^1.8.0" types-requests = "^2.31.0.20240106" diff --git a/rfd_notify/models/topic.py b/rfd_notify/models/topic.py index 28bd2ee..5dcaa24 100644 --- a/rfd_notify/models/topic.py +++ b/rfd_notify/models/topic.py @@ -4,6 +4,7 @@ from .offer import Offer class Topic: # pylint: disable=unused-argument # pylint: disable=too-many-arguments + # pylint: disable=too-many-positional-arguments def __init__( self, topic_id: int,