File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,12 @@ init:
24
24
- " ECHO %PYTHON%"
25
25
- ps : " ls C:/Python*"
26
26
install :
27
- - ps : >
28
- git -C $env:APPVEYOR_BUILD_FOLDER submodule update --init;
29
- (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py');
30
- "$env:PYTHON"\python.exe C:/get-pip.py;
31
- "$env:PYTHON"\Scripts\pip.exe --version;
32
- "$env:PYTHON"\Scripts\pip.exe install wheel;
33
- "$env:PYTHON"\Scripts\pip.exe install -e .
27
+ - git -C %PPVEYOR_BUILD_FOLDER% submodule update --init
28
+ - ps : (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
29
+ - %PYTHON%\python.exe C:/get-pip.py
30
+ - %PYTHON%\Scripts\pip.exe --version
31
+ - %PYTHON%\Scripts\pip.exe install wheel
32
+ - %PYTHON%\Scripts\pip.exe install -e .
34
33
build : false
35
34
test_script :
36
35
- " dir \" C:\\ Program Files (x86)\" "
You can’t perform that action at this time.
0 commit comments