TSNDep/dependencies.json

30 lines
857 B
JSON
Raw Permalink Normal View History

2026-04-25 12:11:57 -05:00
{
"repos": [],
"other_languages": [
{
"name": "Python",
"version": ">=3.10.9",
"requirements": "requirements.txt"
}
],
"hooks": {
"pre_install": [
{
"command": "pip install -r \"${{repo.root}}${{os.sep}}TSNDep${{os.sep}}requirements.txt\"",
2026-04-25 12:11:57 -05:00
"permitir_fallo": false,
"timeout_ms": 30000
}
],
"post_install": [],
"post_install_only_on_success": true,
"pre_update": [
{
"command": "pip install -r \"${{repo.root}}${{os.sep}}TSNDep${{os.sep}}requirements.txt\" --upgrade",
2026-04-25 12:11:57 -05:00
"permitir_fallo": false,
"timeout_ms": 30000
}
],
"post_update": [],
"post_update_only_on_success": true
}
}