Skip to content

Commit c7c9eec

Browse files
committed
🥚 🎡 release 0.5.2
1 parent aa34115 commit c7c9eec

File tree

6 files changed

+44
-10
lines changed

6 files changed

+44
-10
lines changed

Diff for: .moban.d/README.rst

+13
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@
77
**{{name}}** is a specialized xlsx reader using lxml. It does partial reading, meaning
88
it wont load all content into memory.
99

10+
11+
lxml installation
12+
=================
13+
14+
This library depends on lxml. Because its availablity, the use of this library is restricted.
15+
16+
for PyPy, lxml == 3.4.4 are tested to work well. But lxml above 3.4.4 is difficult to get installed.
17+
18+
for Python 3.7, please use lxml==4.1.1.
19+
20+
Otherwise, this library works OK with lxml 3.4.4 or above.
21+
22+
1023
{%endblock%}
1124

1225
{% block write_to_file %}

Diff for: CHANGELOG.rst

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
Change log
22
================================================================================
33

4-
0.5.1 - 24.11.2018
4+
0.5.2 - 15.09.2018
55
--------------------------------------------------------------------------------
66

7-
Added
7+
Updated
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. Fix python 3 compactibility
11+
12+
0.5.1 - 14.07.2018
13+
--------------------------------------------------------------------------------
14+
15+
Updated
816
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
917

1018
#. `#1 <https://github.com/pyexcel/pyexcel-xlsxr/issues/1>`_: fix xml parsing

Diff for: README.rst

+13
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,19 @@ pyexcel-xlsxr - Let you focus on data, instead of xlsx format
2222
it wont load all content into memory.
2323

2424

25+
lxml installation
26+
=================
27+
28+
This library depends on lxml. Because its availablity, the use of this library is restricted.
29+
30+
for PyPy, lxml == 3.4.4 are tested to work well. But lxml above 3.4.4 is difficult to get installed.
31+
32+
for Python 3.7, please use lxml==4.1.1.
33+
34+
Otherwise, this library works OK with lxml 3.4.4 or above.
35+
36+
37+
2538
Known constraints
2639
==================
2740

Diff for: pyexcel-xlsxr.yml

+3-3
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.1"
5-
current_version: "0.5.1"
6-
release: "0.5.1"
4+
version: "0.5.2"
5+
current_version: "0.5.2"
6+
release: "0.5.2"
77
file_type: xlsx
88
nodocs: true
99
dependencies:

Diff for: pyexcel_xlsxr/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.5.1'
1+
__version__ = '0.5.2'
22
__author__ = 'C.W.'

Diff for: setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111

1212
NAME = 'pyexcel-xlsxr'
1313
AUTHOR = 'C.W.'
14-
VERSION = '0.5.1'
14+
VERSION = '0.5.2'
1515
1616
LICENSE = 'New BSD'
1717
DESCRIPTION = (
1818
'Read xlsx file using partial xml'
1919
)
2020
URL = 'https://github.com/pyexcel/pyexcel-xlsxr'
21-
DOWNLOAD_URL = '%s/archive/0.5.1.tar.gz' % URL
21+
DOWNLOAD_URL = '%s/archive/0.5.2.tar.gz' % URL
2222
FILES = ['README.rst', 'CHANGELOG.rst']
2323
KEYWORDS = [
2424
'python',
@@ -49,8 +49,8 @@
4949
# You do not need to read beyond this line
5050
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5151
sys.executable)
52-
GS_COMMAND = ('gs pyexcel-xlsxr v0.5.1 ' +
53-
"Find 0.5.1 in changelog for more details")
52+
GS_COMMAND = ('gs pyexcel-xlsxr v0.5.2 ' +
53+
"Find 0.5.2 in changelog for more details")
5454
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
5555
'Please install gease to enable it.')
5656
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)