diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 216b51a..7a1cc06 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,15 +1,15 @@ repos: - repo: https://github.com/PyCQA/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort - repo: https://github.com/psf/black - rev: 23.10.0 + rev: 24.8.0 hooks: - id: black language_version: python3 - repo: https://github.com/pre-commit/pre-commit-hooks.git - rev: v4.5.0 + rev: v4.6.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: 6.1.0 + rev: 7.1.1 hooks: - id: flake8 - repo: https://github.com/adrienverge/yamllint.git - rev: v1.32.0 + 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: v1.6.1 + rev: v1.11.1 hooks: - id: mypy # empty args needed in order to match mypy cli behavior diff --git a/src/tox_bindep/hooks.py b/src/tox_bindep/hooks.py index 81563ee..0cd91c3 100644 --- a/src/tox_bindep/hooks.py +++ b/src/tox_bindep/hooks.py @@ -1,4 +1,5 @@ """Tox hook implementations.""" + from __future__ import print_function import logging