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

Co-authored-by: Suchintan <suchintan@users.noreply.github.com>
This commit is contained in:
Asher Foa
2025-06-05 15:05:58 -04:00
committed by GitHub
parent 019e244cd8
commit b9b46d68e5

View File

@@ -1,5 +1,5 @@
default_language_version:
python: python3
python: python3.11
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
@@ -13,11 +13,9 @@ repos:
- id: check-symlinks
- id: debug-statements
- id: detect-private-key
- id: check-python-version
args: ['--min-version=3.11', '--max-version=3.13']
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.11.12
rev: v0.9.1
hooks:
# Run the linter.
- id: ruff
@@ -32,7 +30,7 @@ repos:
rev: 6.0.1
hooks:
- id: isort
language_version: python3
language_version: python3.11
exclude: |
(?x)(
^skyvern/client/.*|
@@ -51,7 +49,7 @@ repos:
rev: v1.14.1
hooks:
- id: mypy
args: [--show-error-codes, --warn-unused-configs, --disallow-untyped-calls, --disallow-untyped-defs, --disallow-incomplete-defs, --check-untyped-defs]
args: [--show-error-codes, --warn-unused-configs, --disallow-untyped-calls, --disallow-untyped-defs, --disallow-incomplete-defs, --check-untyped-defs, --python-version=3.11]
additional_dependencies:
- requests
- types-requests