Browse Source

Require win_cli_launchers package

Thomas Kluyver 9 years ago
parent
commit
2d8c09935f
3 changed files with 3 additions and 2 deletions
  1. 1 1
      .travis.yml
  2. 1 1
      appveyor.yml
  3. 1 0
      flit.ini

+ 1 - 1
.travis.yml

@@ -8,7 +8,7 @@ python:
 script: nosetests
 # Ensure dependencies are installed
 install:
-  - pip install requests requests_download jinja2 yarg
+  - pip install requests requests_download jinja2 yarg win_cli_launchers
   - if [[ ${TRAVIS_PYTHON_VERSION} == '2.7' ]]; then pip install configparser pathlib; fi
   - if [[ ${TRAVIS_PYTHON_VERSION} == '3.3' ]]; then pip install pathlib; fi
 

+ 1 - 1
appveyor.yml

@@ -6,7 +6,7 @@ environment:
 
 install:
   - cinst nsis
-  - "%PYTHON%\\python.exe -m pip install requests requests_download jinja2 yarg nose"
+  - "%PYTHON%\\python.exe -m pip install requests requests_download jinja2 yarg nose win_cli_launchers"
 
 build: off
 

+ 1 - 0
flit.ini

@@ -9,6 +9,7 @@ requires = requests
     requests_download
     jinja2
     yarg
+    win_cli_launchers
     configparser; python_version == '2.7'
     pathlib; python_version == '2.7' or python_version == '3.3'
 classifiers = License :: OSI Approved :: MIT License