mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-27 11:22:03 +00:00
The Windows installer runs each -Stage NAME in its own powershell.exe under Hermes-Setup.exe. Test-Python records a detected fallback (e.g. 3.12 when 3.11 is absent) via an in-memory $script:PythonVersion = $fallbackVer mutation, which dies with the python stage's process. The fresh venv stage starts with $PythonVersion back at its "3.11" default, so it logged "Creating virtual environment with Python 3.11..." and ran uv venv venv --python 3.11, failing with exit 2 on machines that only had the fallback installed. Add a cross-process-safe Resolve-AvailablePythonVersion helper (preferring the requested version, then the shared $PythonFallbackVersions list, probed via uv python find) and call it at the top of Install-Venv before creating the venv. Test-Python's fallback loop now iterates the same shared constant so detection and venv creation can't drift. |
||
|---|---|---|
| .. | ||
| ci | ||
| lib | ||
| tests | ||
| whatsapp-bridge | ||
| analyze_livetest.py | ||
| benchmark_browser_eval.py | ||
| build_model_catalog.py | ||
| build_skills_index.py | ||
| check-windows-footguns.py | ||
| check_subprocess_stdin.py | ||
| contributor_audit.py | ||
| discord-voice-doctor.py | ||
| docker_config_migrate.py | ||
| hermes-gateway | ||
| install.cmd | ||
| install.ps1 | ||
| install.sh | ||
| install_psutil_android.py | ||
| keystroke_diagnostic.py | ||
| kill_modal.sh | ||
| lint_diff.py | ||
| LIVETEST_README.md | ||
| profile-tui.py | ||
| release.py | ||
| run_tests.sh | ||
| run_tests_parallel.py | ||
| sample_and_compress.py | ||
| setup_open_webui.sh | ||
| tool_search_livetest.py | ||