From b51828b01d0656ac0a2da45a759dfd855bfaba4c Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Fri, 11 Oct 2024 19:10:07 +0500 Subject: [PATCH] Update tool versions. --- .pre-commit-config.yaml | 6 +++--- pylintrc | 1 + tox.ini | 8 ++++---- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 82153a49..ab995447 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,15 +1,15 @@ repos: - repo: https://github.com/PyCQA/bandit - rev: 1.7.8 + rev: 1.7.10 hooks: - id: bandit args: [-r, -c, .bandit.yml] - repo: https://github.com/PyCQA/flake8 - rev: 7.0.0 + rev: 7.1.1 hooks: - id: flake8 - repo: https://github.com/psf/black.git - rev: 24.4.2 + rev: 24.10.0 hooks: - id: black - repo: https://github.com/pycqa/isort diff --git a/pylintrc b/pylintrc index 87361a88..441c2147 100644 --- a/pylintrc +++ b/pylintrc @@ -27,6 +27,7 @@ disable=bad-continuation, too-many-arguments, too-many-branches, too-many-lines, + too-many-positional-arguments, too-many-public-methods, trailing-comma-tuple, trailing-newlines, diff --git a/tox.ini b/tox.ini index 0ba5c30c..ae686081 100644 --- a/tox.ini +++ b/tox.ini @@ -21,14 +21,14 @@ basepython = python3 deps = # mypy would error if pytest (or its stub) not found pytest - mypy==1.10.0 + mypy==1.11.2 commands = mypy --strict {posargs: w3lib tests} [testenv:pylint] deps = {[testenv]deps} - pylint==3.2.2 + pylint==3.3.1 commands = pylint conftest.py docs setup.py tests w3lib @@ -46,8 +46,8 @@ skip_install = true [testenv:twinecheck] basepython = python3 deps = - twine==5.1.0 - build==1.2.1 + twine==5.1.1 + build==1.2.2 commands = python -m build --sdist twine check dist/*