Skip to content

Commit 98868a6

Browse files
committed
🥚 🎡 release 0.5.3
1 parent f340384 commit 98868a6

File tree

6 files changed

+9
-20
lines changed

6 files changed

+9
-20
lines changed

pyexcel-xlsxr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-xlsxr"
33
nick_name: "xlsxr"
4-
version: "0.5.2"
5-
current_version: "0.5.2"
6-
release: "0.5.2"
4+
version: "0.5.3"
5+
current_version: "0.5.3"
6+
release: "0.5.3"
77
file_type: xlsx
88
nodocs: true
99
dependencies:

pyexcel_xlsxr/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.5.2"
1+
__version__ = "0.5.3"
22
__author__ = "C.W."

pyexcel_xlsxr/messy_xlsx.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import io
2-
import os
32
import re
43
import zipfile
54
from datetime import datetime, time, timedelta

pyexcel_xlsxr/xlsxr.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
"""
2-
pyexcel_xlsxr.xlsxr
3-
~~~~~~~~~~~~~~~~~~~
4-
The lower level xlsx file format handler
5-
6-
:copyright: (c) 2017 by Onni Software Ltd & its contributors
7-
:license: New BSD License
8-
"""
91
from datetime import date, datetime, time
102
from io import UnsupportedOperation
113

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
NAME = "pyexcel-xlsxr"
3434
AUTHOR = "C.W."
35-
VERSION = "0.5.2"
35+
VERSION = "0.5.3"
3636
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"Read xlsx file using partial xml"
4040
)
4141
URL = "https://github.com/pyexcel/pyexcel-xlsxr"
42-
DOWNLOAD_URL = "%s/archive/0.5.2.tar.gz" % URL
42+
DOWNLOAD_URL = "%s/archive/0.5.3.tar.gz" % URL
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -72,8 +72,8 @@
7272
}
7373
# You do not need to read beyond this line
7474
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
75-
GS_COMMAND = ("gs pyexcel-xlsxr v0.5.2 " +
76-
"Find 0.5.2 in changelog for more details")
75+
GS_COMMAND = ("gs pyexcel-xlsxr v0.5.3 " +
76+
"Find 0.5.3 in changelog for more details")
7777
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7878
"Please install gease to enable it.")
7979
UPLOAD_FAILED_MSG = (

tests/test_bug_fixes.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
def test_issue_1():
1010
test_file = get_fixture("issue_1.xlsx")
1111
data = get_data(test_file)
12-
data_array = [
13-
list(map(str, row)) for row in data["dataSheet1"]
14-
]
12+
data_array = [list(map(str, row)) for row in data["dataSheet1"]]
1513
eq_(
1614
data_array,
1715
[

0 commit comments

Comments
 (0)