kick start 0.2.2 pagination support

This commit is contained in:
chfw 2016-08-22 08:37:59 +01:00
parent c0ae7a9060
commit 465d28c7e0
9 changed files with 15 additions and 12 deletions

View File

@ -27,6 +27,7 @@ matrix:
- python-mock
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install ordereddict; fi
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install flake8==2.6.2; fi
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
mv min_requirements.txt requirements.txt ;
fi

View File

@ -232,7 +232,7 @@ Development steps for code changes
#. pip install -r tests/requirements.txt
In order to update test envrionment, and documentation, additional setps are
In order to update test environment, and documentation, additional setps are
required:
#. pip install moban
@ -242,7 +242,7 @@ required:
What is rnd_requirements.txt
-------------------------------
Usually, it is created when a depdent library is not released. Once the dependecy is installed(will be released), the future version of the dependency in the requirements.txt will be valid.
Usually, it is created when a dependent library is not released. Once the dependecy is installed(will be released), the future version of the dependency in the requirements.txt will be valid.
What is pyexcel-commons
---------------------------------

View File

@ -9,14 +9,14 @@ extensions = [
intersphinx_mapping = {
'pyexcel': ('http://pyexcel.readthedocs.org/en/latest/', None)
}
spelling_word_list_filename = 'spelling_wordlist.txt'
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'pyexcel-xls'
copyright = u'2015-2016 Onni Software Ltd.'
version = '0.2.1'
version = '0.2.2'
release = '0.2.1'
exclude_patterns = []
pygments_style = 'sphinx'

View File

@ -1,10 +1,11 @@
overrides: "pyexcel.yaml"
name: "pyexcel-xls"
nick_name: xls
version: 0.2.1
version: 0.2.2
release: 0.2.1
file_type: xls
dependencies:
- pyexcel-io>=0.1.0
- pyexcel-io>=0.2.2
- xlrd
- xlwt;python_version<"3"
- xlwt-future;python_version>="3"

View File

@ -1,4 +1,4 @@
pyexcel-io>=0.1.0
pyexcel-io>=0.2.2
xlrd
xlwt;python_version<"3"
xlwt-future;python_version>="3"

View File

@ -1,2 +1 @@
https://github.com/pyexcel/pyexcel-io/archive/master.zip
https://github.com/pyexcel/pyexcel/archive/master.zip

View File

@ -7,7 +7,7 @@ except ImportError:
NAME = 'pyexcel-xls'
AUTHOR = 'C.W.'
VERSION = '0.2.1'
VERSION = '0.2.2'
EMAIL = 'wangc_2011 (at) hotmail.com'
LICENSE = 'New BSD'
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
@ -26,7 +26,7 @@ KEYWORDS = [
]
INSTALL_REQUIRES = [
'pyexcel-io>=0.1.0',
'pyexcel-io>=0.2.2',
'xlrd',
]

View File

@ -1,2 +1,3 @@
pip freeze
nosetests --with-cov --cover-package pyexcel_xls --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_xls && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long
nosetests --with-cov --cover-package pyexcel_xls --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_xls && flake8 . --exclude=.moban.d

View File

@ -1,2 +1,3 @@
pip freeze
nosetests --with-cov --cover-package pyexcel_xls --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_xls && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long
nosetests --with-cov --cover-package pyexcel_xls --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_xls && flake8 . --exclude=.moban.d