diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f58dd6b..5e1b030 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,15 +1,15 @@ repos: - repo: https://github.com/PyCQA/isort - rev: 5.8.0 + rev: 5.13.2 hooks: - id: isort - repo: https://github.com/psf/black - rev: 21.4b0 + rev: 24.10.0 hooks: - id: black language_version: python3 - repo: https://github.com/pre-commit/pre-commit-hooks.git - rev: v3.4.0 + rev: v5.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace @@ -19,18 +19,18 @@ repos: - id: check-merge-conflict - id: debug-statements - repo: https://github.com/pycqa/flake8.git - rev: 3.9.1 + rev: 7.1.1 hooks: - id: flake8 - repo: https://github.com/adrienverge/yamllint.git - rev: v1.26.1 + rev: v1.35.1 hooks: - id: yamllint files: \.(yaml|yml)$ types: [file, yaml] entry: yamllint --strict - repo: https://github.com/pre-commit/mirrors-mypy - rev: v0.812 + rev: v1.14.0 hooks: - id: mypy # empty args needed in order to match mypy cli behavior @@ -41,7 +41,7 @@ repos: - rich - tox - repo: https://github.com/pycqa/pylint - rev: v2.8.2 + rev: v3.3.3 hooks: - id: pylint additional_dependencies: diff --git a/src/tox_report/hooks.py b/src/tox_report/hooks.py index 3da4a72..2ccd9d4 100644 --- a/src/tox_report/hooks.py +++ b/src/tox_report/hooks.py @@ -1,4 +1,5 @@ """Tox hook implementations.""" + import io import os diff --git a/tests/test_tox_report.py b/tests/test_tox_report.py index eb06e34..e7cb645 100644 --- a/tests/test_tox_report.py +++ b/tests/test_tox_report.py @@ -1,4 +1,5 @@ """Tests for tox-report.""" + import types