diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d09a4ea..f812dab 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -28,7 +28,7 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/tox-dev/pyproject-fmt - rev: "v2.21.0" + rev: "v2.21.1" hooks: - id: pyproject-fmt - repo: https://github.com/astral-sh/uv-pre-commit @@ -36,12 +36,12 @@ repos: hooks: - id: uv-lock - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.1.0 + rev: v4.0.0-alpha.8 hooks: - id: prettier args: ["--tab-width", "2"] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.7 + rev: v0.15.10 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] @@ -51,7 +51,7 @@ repos: hooks: - id: codespell - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.20.0 + rev: v1.20.1 hooks: - id: mypy additional_dependencies: [] diff --git a/tests/test_dunder_main.py b/tests/test_dunder_main.py index f269da9..67fe04e 100644 --- a/tests/test_dunder_main.py +++ b/tests/test_dunder_main.py @@ -4,7 +4,7 @@ def test_can_run_as_python_module(): """Run the CLI as a Python module.""" - result = subprocess.run( # noqa: S603 + result = subprocess.run( [sys.executable, "-m", "decryptpdf", "--help"], check=True, capture_output=True,