prepare for 0.1.0 release

This commit is contained in:
chfw 2016-01-17 16:33:17 +00:00
parent 396caa5d6f
commit 1cacb4d6e6
6 changed files with 11 additions and 5 deletions

View File

@ -13,7 +13,6 @@ python:
- pypy
install:
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install ordereddict; fi
- pip install git+https://github.com/chfw/pyexcel-io.git
- pip install git+https://github.com/chfw/pyexcel.git
- pip install -r requirements.txt
- pip install -r tests/requirements.txt

View File

@ -35,6 +35,13 @@ or clone it and install it:
Usage
=====
New feature
-----------------
1. Passing "streaming=True" to get_data, you will get the two dimensional array as a generator
2. Passing "data=your_generator" to save_data is acceptable too.
As a standalone library
------------------------

View File

@ -1 +1 @@
0.1.0-rc1
0.1.0

View File

@ -52,7 +52,7 @@ master_doc = 'index'
# General information about the project.
project = u'pyexcel-xls'
copyright = u'2015, C.W.'
copyright = u'2015-2016, Onni Software Ltd.'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the

View File

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

View File

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