Răsfoiți Sursa

Now requires yarg and requests_download

Thomas Kluyver 9 ani în urmă
părinte
comite
9310f23829
3 a modificat fișierele cu 4 adăugiri și 2 ștergeri
  1. 1 1
      .travis.yml
  2. 1 1
      appveyor.yml
  3. 2 0
      flit.ini

+ 1 - 1
.travis.yml

@@ -7,7 +7,7 @@ python:
 script: nosetests
 # Ensure dependencies are installed
 install:
-  - pip install requests jinja2
+  - pip install requests requests_download jinja2 yarg
   - 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 jinja2 nose"
+  - "%PYTHON%\\python.exe -m pip install requests requests_download jinja2 yarg nose"
 
 build: off
 

+ 2 - 0
flit.ini

@@ -6,7 +6,9 @@ dist-name = pynsist
 home-page = http://pynsist.readthedocs.org/en/latest/
 description-file = README.rst
 requires = requests
+    requests_download
     jinja2
+    yarg
     configparser; python_version == '2.7'
     pathlib; python_version == '2.7' or python_version == '3.3'
 classifiers = License :: OSI Approved :: MIT License