Trying to fix pip error on Windows build machine. pin the pip version to 24.2

pull/8788/head
Akshay Joshi 2025-05-26 13:28:28 +05:30
parent 0b911bf58c
commit 9ce0e77e61
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ REM Main build sequence Ends
CALL "%TMPDIR%\venv\Scripts\activate" || EXIT /B 1
ECHO Installing dependencies...
CALL python -m pip install --upgrade pip || EXIT /B 1
CALL python -m pip install --upgrade pip==24.2 || EXIT /B 1
CALL pip install --only-binary=cryptography -r "%WD%\requirements.txt" || EXIT /B 1
CD %WD%