Skip to content

Commit

Permalink
🥚 🎡 release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Sep 15, 2018
1 parent aa34115 commit c7c9eec
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 10 deletions.
13 changes: 13 additions & 0 deletions .moban.d/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@
**{{name}}** is a specialized xlsx reader using lxml. It does partial reading, meaning
it wont load all content into memory.


lxml installation
=================

This library depends on lxml. Because its availablity, the use of this library is restricted.

for PyPy, lxml == 3.4.4 are tested to work well. But lxml above 3.4.4 is difficult to get installed.

for Python 3.7, please use lxml==4.1.1.

Otherwise, this library works OK with lxml 3.4.4 or above.


{%endblock%}

{% block write_to_file %}
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
Change log
================================================================================

0.5.1 - 24.11.2018
0.5.2 - 15.09.2018
--------------------------------------------------------------------------------

Added
Updated
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. Fix python 3 compactibility

0.5.1 - 14.07.2018
--------------------------------------------------------------------------------

Updated
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. `#1 <https://github.com/pyexcel/pyexcel-xlsxr/issues/1>`_: fix xml parsing
Expand Down
13 changes: 13 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ pyexcel-xlsxr - Let you focus on data, instead of xlsx format
it wont load all content into memory.


lxml installation
=================

This library depends on lxml. Because its availablity, the use of this library is restricted.

for PyPy, lxml == 3.4.4 are tested to work well. But lxml above 3.4.4 is difficult to get installed.

for Python 3.7, please use lxml==4.1.1.

Otherwise, this library works OK with lxml 3.4.4 or above.



Known constraints
==================

Expand Down
6 changes: 3 additions & 3 deletions pyexcel-xlsxr.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
overrides: "pyexcel.yaml"
name: "pyexcel-xlsxr"
nick_name: "xlsxr"
version: "0.5.1"
current_version: "0.5.1"
release: "0.5.1"
version: "0.5.2"
current_version: "0.5.2"
release: "0.5.2"
file_type: xlsx
nodocs: true
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion pyexcel_xlsxr/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.5.1'
__version__ = '0.5.2'
__author__ = 'C.W.'
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@

NAME = 'pyexcel-xlsxr'
AUTHOR = 'C.W.'
VERSION = '0.5.1'
VERSION = '0.5.2'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
'Read xlsx file using partial xml'
)
URL = 'https://github.com/pyexcel/pyexcel-xlsxr'
DOWNLOAD_URL = '%s/archive/0.5.1.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.2.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'python',
Expand Down Expand Up @@ -49,8 +49,8 @@
# You do not need to read beyond this line
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
sys.executable)
GS_COMMAND = ('gs pyexcel-xlsxr v0.5.1 ' +
"Find 0.5.1 in changelog for more details")
GS_COMMAND = ('gs pyexcel-xlsxr v0.5.2 ' +
"Find 0.5.2 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.')
UPLOAD_FAILED_MSG = (
Expand Down

0 comments on commit c7c9eec

Please sign in to comment.