fix broken build

This commit is contained in:
chfw 2016-03-04 22:23:56 +00:00
parent bd87ccdd9b
commit 0cf476215d
5 changed files with 8 additions and 3 deletions

View File

@ -5,3 +5,7 @@
- 3.5
- pypy
{%endblock%}
{%block custom_install %}
- pip install https://github.com/pyexcel/pyexcel-io/archive/master.zip
{%endblock%}

View File

@ -12,6 +12,7 @@ python:
- 3.5
- pypy
install:
- pip install https://github.com/pyexcel/pyexcel-io/archive/master.zip
- pip install -r requirements.txt
- pip install -r tests/requirements.txt
script:

View File

@ -4,7 +4,7 @@ nick_name: xls
version: 0.2.0
file_type: xls
dependencies:
- pyexcel-io>=0.1.0
- pyexcel-io>=0.2.0
- xlrd
- xlwt-future
description: |

View File

@ -1,3 +1,3 @@
pyexcel-io>=0.1.0
pyexcel-io>=0.2.0
xlrd
xlwt-future

View File

@ -9,7 +9,7 @@ with open("README.rst", 'r') as readme:
README_txt = readme.read()
dependencies = [
'pyexcel-io>=0.1.0',
'pyexcel-io>=0.2.0',
'xlrd',
'xlwt-future',
]