aidevops 3.1.9 → 3.1.10
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/tool-install.sh +8 -0
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.10
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -1460,6 +1460,8 @@ setup_ai_orchestration() {
|
|
|
1460
1460
|
local python_required_minor="${PYTHON_REQUIRED_MINOR:-10}"
|
|
1461
1461
|
local recommended_python_formula
|
|
1462
1462
|
recommended_python_formula=$(get_recommended_python_formula)
|
|
1463
|
+
local recommended_python_version
|
|
1464
|
+
recommended_python_version="${recommended_python_formula#python@}"
|
|
1463
1465
|
|
|
1464
1466
|
# Check Python (prefer Homebrew/pyenv over system) — uses shared helpers
|
|
1465
1467
|
# from _common.sh (get_recommended_python_formula, find_python3,
|
|
@@ -1477,10 +1479,16 @@ setup_ai_orchestration() {
|
|
|
1477
1479
|
print_success "Python $python_version found ($python_required_major.$python_required_minor+ required)"
|
|
1478
1480
|
else
|
|
1479
1481
|
print_warning "Python $python_required_major.$python_required_minor+ required for AI orchestration, found $python_version"
|
|
1482
|
+
if [[ "${PLATFORM_MACOS:-false}" == "true" ]]; then
|
|
1483
|
+
print_info "Alternative (pyenv): pyenv install ${recommended_python_version} && pyenv global ${recommended_python_version}"
|
|
1484
|
+
fi
|
|
1480
1485
|
offer_python_brew_install "upgrade" "$recommended_python_formula" || true
|
|
1481
1486
|
fi
|
|
1482
1487
|
else
|
|
1483
1488
|
print_warning "Python 3 not found - AI orchestration frameworks unavailable"
|
|
1489
|
+
if [[ "${PLATFORM_MACOS:-false}" == "true" ]]; then
|
|
1490
|
+
print_info "Alternative (pyenv): pyenv install ${recommended_python_version} && pyenv global ${recommended_python_version}"
|
|
1491
|
+
fi
|
|
1484
1492
|
offer_python_brew_install "install" "$recommended_python_formula" || true
|
|
1485
1493
|
return 0
|
|
1486
1494
|
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: 3.1.
|
|
13
|
+
# Version: 3.1.10
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|