Trying to fix pip error on Windows build machine. pin the pip version to 24.2
parent
0b911bf58c
commit
9ce0e77e61
2
Make.bat
2
Make.bat
|
|
@ -164,7 +164,7 @@ REM Main build sequence Ends
|
||||||
CALL "%TMPDIR%\venv\Scripts\activate" || EXIT /B 1
|
CALL "%TMPDIR%\venv\Scripts\activate" || EXIT /B 1
|
||||||
|
|
||||||
ECHO Installing dependencies...
|
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
|
CALL pip install --only-binary=cryptography -r "%WD%\requirements.txt" || EXIT /B 1
|
||||||
|
|
||||||
CD %WD%
|
CD %WD%
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue