We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed0e718 commit 8001278Copy full SHA for 8001278
scripts/upgrade_env.bat
@@ -7,7 +7,7 @@ REM Licensed under the terms of the MIT License
7
REM Copyright (c) 2020 Pierre Raybaut
8
REM (see PythonQwt LICENSE file for more details)
9
REM ======================================================
10
-setlocal
+setlocal enabledelayedexpansion
11
call %~dp0utils GetScriptPath SCRIPTPATH
12
cd %SCRIPTPATH%\..
13
@@ -18,7 +18,8 @@ for /D %%d in ("%DIR0%*") do (
18
set WINPYDIRBASE=%%d
19
call !WINPYDIRBASE!\scripts\env.bat
20
echo Upgrading environment for "%%d":
21
- python -m pip install --upgrade -r dev\requirements.txt
+ python -m pip install --upgrade pip
22
+ python -m pip install --upgrade -r requirements.txt
23
echo ----
24
)
25
0 commit comments