mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 11:40:32 +00:00
add pre-commit hook to enforce Python version 3.11-3.13 (#2636)
This commit is contained in:
parent
fdf61aa2f9
commit
9fd8680c83
1 changed files with 8 additions and 0 deletions
|
|
@ -13,6 +13,14 @@ repos:
|
|||
- id: check-symlinks
|
||||
- id: debug-statements
|
||||
- id: detect-private-key
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: check-python-version
|
||||
name: Check Python Version (3.11-3.13)
|
||||
entry: python -c "import sys; assert (3,11) <= sys.version_info[:2] <= (3,13), f'Python {sys.version_info[:2]} not supported. Use Python 3.11-3.13'"
|
||||
language: system
|
||||
pass_filenames: false
|
||||
always_run: true
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
# Ruff version.
|
||||
rev: v0.11.13
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue