Skip to content

Commit

Permalink
Update tool versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Oct 11, 2024
1 parent d237a48 commit b51828b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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/*

0 comments on commit b51828b

Please sign in to comment.