@ngocsangairvds/vsaf 4.1.12 → 4.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skills/vds-skill/install-deps.mjs +6 -6
- package/skills/vds-skill/runtime/markdown_orchestrator/pyproject.toml +1 -1
- package/skills/vds-skill/runtime/pdf_orchestrator/pyproject.toml +1 -1
- package/skills/vds-skill/runtime/pyproject.toml +3 -3
- package/skills/vds-skill/runtime/sonarqube_orchestrator/pyproject.toml +1 -1
- package/skills/vds-skill/runtime/vds_agent_core/pyproject.toml +1 -1
- package/skills/vds-skill/runtime/vds_cli/pyproject.toml +1 -1
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@ function checkPython() {
|
|
|
49
49
|
}
|
|
50
50
|
const major = Number(match[1]);
|
|
51
51
|
const minor = Number(match[2]);
|
|
52
|
-
if (major < 3 || (major === 3 && minor <
|
|
52
|
+
if (major < 3 || (major === 3 && minor < 12)) {
|
|
53
53
|
printPythonGuide(major, minor);
|
|
54
54
|
process.exit(1);
|
|
55
55
|
}
|
|
@@ -62,15 +62,15 @@ function checkPython() {
|
|
|
62
62
|
|
|
63
63
|
function printPythonGuide(major, minor) {
|
|
64
64
|
const current = major ? `${major}.${minor}` : 'not found';
|
|
65
|
-
console.error(`\n ✗ Python >= 3.
|
|
65
|
+
console.error(`\n ✗ Python >= 3.12 required (current: ${current})\n`);
|
|
66
66
|
if (IS_WIN) {
|
|
67
|
-
console.error(' Install: winget install Python.Python.3.
|
|
67
|
+
console.error(' Install: winget install Python.Python.3.12');
|
|
68
68
|
console.error(' Or download from: https://www.python.org/downloads/\n');
|
|
69
69
|
} else if (IS_MAC) {
|
|
70
|
-
console.error(' Install: brew install python@3.
|
|
70
|
+
console.error(' Install: brew install python@3.12\n');
|
|
71
71
|
} else {
|
|
72
|
-
console.error(' Install: sudo apt install python3
|
|
73
|
-
console.error(' Or use pyenv: pyenv install 3.
|
|
72
|
+
console.error(' Install: sudo apt install python3');
|
|
73
|
+
console.error(' Or use pyenv: pyenv install 3.12\n');
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
|
|
@@ -3,7 +3,7 @@ name = "vds-pdf-orchestrator"
|
|
|
3
3
|
version = "0.1.0"
|
|
4
4
|
description = "PDF manipulation orchestrator for VDS platform with security-first approach"
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
7
|
# Pruned 2026-04-25: only the 8 deps that are actually imported in src/ are
|
|
8
8
|
# kept. Removed 33 phantom deps (presidio + spaCy stack, pymupdf, weasyprint
|
|
9
9
|
# extras, etc.) — see git log for the full diff. The largest impact: drops
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vds-scripts-workspace"
|
|
3
3
|
version = "0.0.0"
|
|
4
|
-
requires-python = ">=3.
|
|
4
|
+
requires-python = ">=3.12"
|
|
5
5
|
|
|
6
6
|
[tool.uv]
|
|
7
7
|
package = false
|
|
@@ -36,7 +36,7 @@ consider_namespace_packages = true
|
|
|
36
36
|
|
|
37
37
|
[tool.ruff]
|
|
38
38
|
line-length = 120
|
|
39
|
-
target-version = "
|
|
39
|
+
target-version = "py312"
|
|
40
40
|
# Exclude intentional non-compliant fixture files
|
|
41
41
|
exclude = [
|
|
42
42
|
"**/tests/fixtures/python-noncompliant/**",
|
|
@@ -107,7 +107,7 @@ indent-style = "space"
|
|
|
107
107
|
|
|
108
108
|
# Phase 3: Workspace mypy config — packages opt-in by not overriding
|
|
109
109
|
[tool.mypy]
|
|
110
|
-
python_version = "3.
|
|
110
|
+
python_version = "3.12"
|
|
111
111
|
ignore_missing_imports = true
|
|
112
112
|
disable_error_code = ["prop-decorator"]
|
|
113
113
|
show_error_codes = true
|
|
@@ -3,7 +3,7 @@ name = "vds-sonarqube-orchestrator"
|
|
|
3
3
|
version = "0.2.0"
|
|
4
4
|
description = "VDS SonarQube orchestrator for code quality scanning and issue management"
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
7
|
license = { text = "MIT" }
|
|
8
8
|
authors = [{ name = "VDS Team" }]
|
|
9
9
|
keywords = ["sonarqube", "code-quality", "scanning", "vds", "orchestrator"]
|