aidevops 2.172.23 → 2.172.26
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/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup-modules/plugins.sh +18 -4
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.172.
|
|
1
|
+
2.172.26
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup-modules/plugins.sh
CHANGED
|
@@ -22,9 +22,17 @@ check_python_for_skill_scanner() {
|
|
|
22
22
|
local ver_output
|
|
23
23
|
ver_output=$("$py_bin" --version 2>/dev/null) || return 1
|
|
24
24
|
# "Python 3.11.5" -> extract major.minor
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
if [[ "$ver_output" != Python\ * ]]; then
|
|
26
|
+
return 1
|
|
27
|
+
fi
|
|
28
|
+
local version major remainder minor
|
|
29
|
+
version="${ver_output#Python }"
|
|
30
|
+
major="${version%%.*}"
|
|
31
|
+
remainder="${version#*.}"
|
|
32
|
+
minor="${remainder%%.*}"
|
|
33
|
+
if [[ ! "$major" =~ ^[0-9]+$ || ! "$minor" =~ ^[0-9]+$ ]]; then
|
|
34
|
+
return 1
|
|
35
|
+
fi
|
|
28
36
|
if [[ "$major" -gt "$required_major" ]] ||
|
|
29
37
|
{ [[ "$major" -eq "$required_major" ]] && [[ "$minor" -ge "$required_minor" ]]; }; then
|
|
30
38
|
return 0
|
|
@@ -61,7 +69,13 @@ check_python_for_skill_scanner() {
|
|
|
61
69
|
print_success "Python 3.11 installed via uv (at $uv_py)"
|
|
62
70
|
return 0
|
|
63
71
|
fi
|
|
64
|
-
print_warning "uv
|
|
72
|
+
print_warning "uv reported Python 3.11 installed, but verification failed"
|
|
73
|
+
if [[ -n "$uv_py" ]]; then
|
|
74
|
+
print_warning "Found interpreter at $uv_py, but version verification still failed"
|
|
75
|
+
else
|
|
76
|
+
print_warning "python3.11 is not on PATH and 'uv python find 3.11' did not return a usable path"
|
|
77
|
+
fi
|
|
78
|
+
print_info "Run 'uv python list' to confirm the install and update PATH if needed"
|
|
65
79
|
else
|
|
66
80
|
print_warning "uv python install 3.11 failed — see errors above"
|
|
67
81
|
fi
|
package/setup.sh
CHANGED
|
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
10
10
|
# AI Assistant Server Access Framework Setup Script
|
|
11
11
|
# Helps developers set up the framework for their infrastructure
|
|
12
12
|
#
|
|
13
|
-
# Version: 2.172.
|
|
13
|
+
# Version: 2.172.26
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|