浏览代码

Require win_cli_launchers package

Thomas Kluyver 9 年之前
父节点
当前提交
2d8c09935f
共有 3 个文件被更改,包括 3 次插入2 次删除
  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