File tree Expand file tree Collapse file tree 7 files changed +27
-11
lines changed Expand file tree Collapse file tree 7 files changed +27
-11
lines changed Original file line number Diff line number Diff line change 11Change log
22================================================================================
33
4+ 0.6.2 - 7.10.2020
5+ --------------------------------------------------------------------------------
6+
7+ **updated **
8+
9+ #. `#94 <https://github.com/pyexcel/pyexcel-io/issues/94 >`_: keep backward
10+ compatibility for pyexcel-xls 0.4.1
11+
4120.6.1 - 7.10.2020
513--------------------------------------------------------------------------------
614
Original file line number Diff line number Diff line change 11name : pyexcel-io
22organisation : pyexcel
33releases :
4+ - changes :
5+ - action : updated
6+ details :
7+ - " `#94`: keep backward compatibility for pyexcel-xls 0.4.1"
8+ version : 0.6.2
9+ date : 7.10.2020
410- changes :
511 - action : removed
612 details :
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ Common parameters
55'library' option is added
66--------------------------------------------------------------------------------
77
8- In order to have overlapping plugins co-exit , 'library' option is added to
8+ In order to have overlapping plugins co-exist , 'library' option is added to
99get_data and save_data.
1010
1111
1212get_data only parameters
13- -------------------------------
13+ --------------------------------------------------------------------------------
1414
1515keep_trailing_empty_cells
1616********************************************************************************
Original file line number Diff line number Diff line change 2626copyright = '2015-2020 Onni Software Ltd.'
2727author = 'chfw'
2828# The short X.Y version
29- version = '0.6.1 '
29+ version = '0.6.2 '
3030# The full version, including alpha/beta/rc tags
31- release = '0.6.1 '
31+ release = '0.6.2 '
3232
3333# -- General configuration ---------------------------------------------------
3434
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ overrides: "pyexcel.yaml"
22project : " pyexcel-io"
33name : pyexcel-io
44nick_name : io
5- version : 0.6.1
6- current_version : 0.6.1
7- release : 0.6.1
5+ version : 0.6.2
6+ current_version : 0.6.2
7+ release : 0.6.2
88copyright_year : 2015-2020
99moban_command : false
1010is_on_conda : true
Original file line number Diff line number Diff line change 77 :copyright: (c) 2014-2020 by Onni Software Ltd.
88 :license: New BSD License, see LICENSE for more details
99"""
10+ import sys
1011import logging
1112from io import BytesIO , StringIO # noqa: F401
1213from collections import OrderedDict # noqa: F401
@@ -22,6 +23,7 @@ def emit(self, record):
2223
2324text_type = str
2425irange = range
26+ PY2 = sys .version [0 ] == 2
2527
2628
2729def isstream (instance ):
Original file line number Diff line number Diff line change 3232
3333NAME = "pyexcel-io"
3434AUTHOR = "chfw"
35- VERSION = "0.6.1 "
35+ VERSION = "0.6.2 "
3636EMAIL = "info@pyexcel.org"
3737LICENSE = "New BSD"
3838DESCRIPTION = (
3939 "A python library to read and write structured data in csv, zipped csv" +
4040 "format and to/from databases"
4141)
4242URL = "https://github.com/pyexcel/pyexcel-io"
43- DOWNLOAD_URL = "%s/archive/0.6.1 .tar.gz" % URL
43+ DOWNLOAD_URL = "%s/archive/0.6.2 .tar.gz" % URL
4444FILES = ["README.rst" , "CHANGELOG.rst" ]
4545KEYWORDS = [
4646 "python" ,
8585}
8686# You do not need to read beyond this line
8787PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi" .format (sys .executable )
88- GS_COMMAND = ("gs pyexcel-io v0.6.1 " +
89- "Find 0.6.1 in changelog for more details" )
88+ GS_COMMAND = ("gs pyexcel-io v0.6.2 " +
89+ "Find 0.6.2 in changelog for more details" )
9090NO_GS_MESSAGE = ("Automatic github release is disabled. " +
9191 "Please install gease to enable it." )
9292UPLOAD_FAILED_MSG = (
You can’t perform that action at this time.
0 commit comments