Skip to content

Commit 771969e

Browse files
committed
update dependencies
1 parent 0970757 commit 771969e

File tree

6 files changed

+13
-18
lines changed

6 files changed

+13
-18
lines changed

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
project = u'pyexcel-xls'
1818
copyright = u'2015-2016 Onni Software Ltd.'
19-
version = '0.2.3'
20-
release = '0.3.0'
19+
version = '0.3.0'
20+
release = '0.3.1'
2121
exclude_patterns = []
2222
pygments_style = 'sphinx'
2323
html_theme = 'default'

pyexcel_xls.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-xls"
33
nick_name: xls
4-
version: 0.3.0
5-
release: 0.2.3
4+
version: 0.3.1
5+
release: 0.3.0
66
file_type: xls
77
dependencies:
8-
- pyexcel-io>=0.2.2
8+
- pyexcel-io>=0.3.0
99
- xlrd
10-
- xlwt;python_version<"3"
11-
- xlwt-future;python_version>="3"
10+
- xlwt
1211
description: A wrapper library to read, manipulate and write data in xls format. It reads xlsx and xlsm format

pyexcel_xls/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The lower level xls/xlsx/xlsm file format handler using xlrd/xlwt
66
7-
:copyright: (c) 2015-2016 by Onni Software Ltd
7+
:copyright: (c) 2016-2017 by Onni Software Ltd
88
:license: New BSD License
99
"""
1010
# flake8: noqa

pyexcel_xls/xls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The lower level xls/xlsm file format handler using xlrd/xlwt
66
7-
:copyright: (c) 2015-2016 by Onni Software Ltd
7+
:copyright: (c) 2016-2017 by Onni Software Ltd
88
:license: New BSD License
99
"""
1010
import sys

requirements.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
pyexcel-io>=0.2.2
1+
pyexcel-io>=0.3.0
22
xlrd
3-
xlwt;python_version<"3"
4-
xlwt-future;python_version>="3"
3+
xlwt

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
NAME = 'pyexcel-xls'
1212
AUTHOR = 'C.W.'
13-
VERSION = '0.3.0'
13+
VERSION = '0.3.1'
1414
EMAIL = 'wangc_2011 (at) hotmail.com'
1515
LICENSE = 'New BSD'
1616
DESCRIPTION = (
@@ -44,14 +44,11 @@
4444
]
4545

4646
INSTALL_REQUIRES = [
47-
'pyexcel-io>=0.2.2',
47+
'pyexcel-io>=0.3.0',
4848
'xlrd',
49+
'xlwt',
4950
]
5051

51-
if PY2:
52-
INSTALL_REQUIRES.append('xlwt')
53-
if not PY2:
54-
INSTALL_REQUIRES.append('xlwt-future')
5552

5653
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
5754
EXTRAS_REQUIRE = {

0 commit comments

Comments
 (0)