mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-08 18:13:59 +00:00
fix(pre-commit): use single pytest dependency specifier (#91276)
[pytest>=8, <9] is parsed as two items; pip fails on '<9'. Use ["pytest>=8,<9"] so pip gets one valid PEP 440 spec. Pre-commit-only fix from closed #39109.
This commit is contained in:
@@ -64,7 +64,7 @@ repos:
|
||||
name: skills python tests
|
||||
entry: pytest -q -c skills/pyproject.toml skills
|
||||
language: python
|
||||
additional_dependencies: [pytest>=8, <9]
|
||||
additional_dependencies: ["pytest>=8,<9"]
|
||||
pass_filenames: false
|
||||
files: "^skills/.*\\.py$"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user