update dependencies

This commit is contained in:
chfw 2017-06-13 18:43:41 +01:00
parent b622bce483
commit a6b812f8b5
3 changed files with 9 additions and 9 deletions

View File

@ -5,12 +5,12 @@ version: 0.4.0
release: 0.3.4 release: 0.3.4
dependencies: dependencies:
- ordereddict;python_version<"2.7" - ordereddict;python_version<"2.7"
- lml - lml==0.0.1
extra_dependencies: extra_dependencies:
- xls: - xls:
- pyexcel-xls>=0.3.0 - pyexcel-xls>=0.4.0
- xlsx: - xlsx:
- pyexcel-xlsx>=0.3.0 - pyexcel-xlsx>=0.4.0
- ods: - ods:
- pyexcel-ods3>=0.3.0 - pyexcel-ods3>=0.4.0
description: A python library to read and write structured data in csv, zipped csv format and to/from databases description: A python library to read and write structured data in csv, zipped csv format and to/from databases

View File

@ -1,2 +1,2 @@
ordereddict;python_version<"2.7" ordereddict;python_version<"2.7"
lml lml==0.0.1

View File

@ -46,7 +46,7 @@ CLASSIFIERS = [
] ]
INSTALL_REQUIRES = [ INSTALL_REQUIRES = [
'lml', 'lml==0.0.1',
] ]
if PY26: if PY26:
@ -54,9 +54,9 @@ if PY26:
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests']) PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
EXTRAS_REQUIRE = { EXTRAS_REQUIRE = {
'xls': ['pyexcel-xls>=0.3.0'], 'xls': ['pyexcel-xls>=0.4.0'],
'xlsx': ['pyexcel-xlsx>=0.3.0'], 'xlsx': ['pyexcel-xlsx>=0.4.0'],
'ods': ['pyexcel-ods3>=0.3.0'], 'ods': ['pyexcel-ods3>=0.4.0'],
} }