Fix for incorrect upgrade logic for torchruntime. Affects the workaround in #1918

This commit is contained in:
cmdr2 2025-04-23 15:22:30 +05:30
parent 8380ba97c5
commit bac23290dd
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ call where python
call python --version
@rem this is outside check_modules.py to ensure that the required version of torchruntime is present
call python -m pip install -q torchruntime>=1.15.1
call python -m pip install -q "torchruntime>=1.15.1"
call python scripts\check_modules.py --launch-uvicorn
pause

View File

@ -47,7 +47,7 @@ if [ -e "src" ]; then mv src src-old; fi
if [ -e "ldm" ]; then mv ldm ldm-old; fi
# this is outside check_modules.py to ensure that the required version of torchruntime is present
python -m pip install -q torchruntime>=1.15.1
python -m pip install -q "torchruntime>=1.15.1"
cd ..
# Download the required packages