fix: show pip install errors in start.bat and loosen dependency pins for Python 3.13+

start.bat was silently swallowing pip errors. Strict version pins on
pydantic, fastapi, and uvicorn caused build failures on Python 3.13+
due to missing pre-built wheels.
This commit is contained in:
anoracleofra-code
2026-03-09 07:55:18 -06:00
parent 1d0ccdd55a
commit 7b4e907bd6
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ if not exist "venv\" (
python -m venv venv
)
call venv\Scripts\activate.bat
pip install -r requirements.txt >nul 2>&1
pip install -r requirements.txt
cd ..
echo.