diff options
| author | Stephen <stephengroat@users.noreply.github.com> | 2019-01-10 14:28:14 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-10 14:28:14 -0800 |
| commit | a8ef51adfa98075432ef5788e603bdbae24b1061 (patch) | |
| tree | 9b260a5988ab09fb0e8bde3fd9bd942c966b8dd2 | |
| parent | d2c47d785fe31ee9d133cb3d4c1abd7a41ee44cd (diff) | |
| download | miasm-a8ef51adfa98075432ef5788e603bdbae24b1061.tar.gz miasm-a8ef51adfa98075432ef5788e603bdbae24b1061.zip | |
use reference
https://packaging.python.org/guides/supporting-windows-using-appveyor/#appveyor-yml
| -rw-r--r-- | .appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index da36f555..c7a6f4f8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,8 +24,8 @@ environment: install: - cmd: cd c:\projects\miasm - - cmd: "%PYTHON%\\pip.exe install -r requirements.txt" - - cmd: "%PYTHON%\\pip.exe install -r optional_requirements.txt" + - cmd: "%PYTHON%\\python.exe -m pip install -r requirements.txt" + - cmd: "%PYTHON%\\python.exe -m pip install -r optional_requirements.txt" build_script: - cmd: if "%platform%"=="Win32" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 |