Преглед на файлове

Fix scons installation on AppVeyor

Seems like AppVeyor just upgraded pip and finally removed the
deprecated --egg switch.
Rémi Verschelde преди 7 години
родител
ревизия
79e76d8329
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      .appveyor.yml

+ 2 - 1
.appveyor.yml

@@ -17,7 +17,8 @@ cache:
 
 install:
   - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
-  - pip install --egg scons  # it will fail on AppVeyor without --egg flag
+  - pip install -U wheel  # needed for pip install scons to work, otherwise a flag is missing
+  - pip install scons
   - if defined VS call "%VS%" %ARCH%  # if defined - so we can also use mingw
 
 before_build: