Revert "Revert "chore: update pre-commit hooks and add Python version check"" (#2629)

This commit is contained in:
Shuchang Zheng
2025-06-07 12:25:52 -07:00
committed by GitHub
parent 3a927aa4e2
commit 211cdaa94c

View File

@@ -1,5 +1,5 @@
default_language_version: default_language_version:
python: python3.11 python: python3
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0 rev: v5.0.0
@@ -15,7 +15,7 @@ repos:
- id: detect-private-key - id: detect-private-key
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: v0.9.1 rev: v0.11.13
hooks: hooks:
# Run the linter. # Run the linter.
- id: ruff - id: ruff
@@ -30,7 +30,7 @@ repos:
rev: 6.0.1 rev: 6.0.1
hooks: hooks:
- id: isort - id: isort
language_version: python3.11 language_version: python3
exclude: | exclude: |
(?x)( (?x)(
^skyvern/client/.*| ^skyvern/client/.*|
@@ -44,10 +44,10 @@ repos:
- id: python-no-log-warn - id: python-no-log-warn
- id: python-use-type-annotations - id: python-use-type-annotations
- repo: https://github.com/pre-commit/mirrors-mypy - repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.14.1 rev: v1.16.0
hooks: hooks:
- id: mypy - id: mypy
args: [--show-error-codes, --warn-unused-configs, --disallow-untyped-calls, --disallow-untyped-defs, --disallow-incomplete-defs, --check-untyped-defs, --python-version=3.11] args: [--show-error-codes, --warn-unused-configs, --disallow-untyped-calls, --disallow-untyped-defs, --disallow-incomplete-defs, --check-untyped-defs]
additional_dependencies: additional_dependencies:
- requests - requests
- types-requests - types-requests