Skip to content

Commit 416add4

Browse files
committed
Merge branch 'master' of https://github.com/chfw/pyexcel-text
2 parents ba814c1 + 5a5f492 commit 416add4

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

pyexcel_text/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,14 @@
77
:copyright: (c) 2014 by C. W.
88
:license: GPL v3
99
"""
10-
import sys
1110
from pyexcel.presentation import STRINGIFICATION
1211

1312

1413
TABLEFMT="simple"
1514

1615

1716
def class_name(name):
18-
if sys.version_info[0] > 2:
19-
return "<class '%s'>" % name
20-
else:
21-
return name
17+
return "<class '%s'>" % name
2218

2319

2420
def present_matrix(matrix_instance):

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
setup(
1919
name='pyexcel-text',
2020
author="C. W.",
21-
version='0.0.1',
21+
version='0.0.2',
2222
author_email="[email protected]",
2323
url="https://github.com/chfw/pyexcel-text",
2424
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
2525
include_package_data=True,
26-
dependencies=[
27-
'pyexcel>=0.0.8',
26+
install_requires=[
27+
'pyexcel>=0.0.9',
2828
'tabulate'
2929
],
3030
description="It is a plugin to pyexcel and provides the capbility to present and write data in text fromats",

0 commit comments

Comments
 (0)