File tree 7 files changed +27
-11
lines changed
7 files changed +27
-11
lines changed Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
3
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
+
4
12
0.6.1 - 7.10.2020
5
13
--------------------------------------------------------------------------------
6
14
Original file line number Diff line number Diff line change 1
1
name : pyexcel-io
2
2
organisation : pyexcel
3
3
releases :
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
4
10
- changes :
5
11
- action : removed
6
12
details :
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ Common parameters
5
5
'library' option is added
6
6
--------------------------------------------------------------------------------
7
7
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
9
9
get_data and save_data.
10
10
11
11
12
12
get_data only parameters
13
- -------------------------------
13
+ --------------------------------------------------------------------------------
14
14
15
15
keep_trailing_empty_cells
16
16
********************************************************************************
Original file line number Diff line number Diff line change 26
26
copyright = '2015-2020 Onni Software Ltd.'
27
27
author = 'chfw'
28
28
# The short X.Y version
29
- version = '0.6.1 '
29
+ version = '0.6.2 '
30
30
# The full version, including alpha/beta/rc tags
31
- release = '0.6.1 '
31
+ release = '0.6.2 '
32
32
33
33
# -- General configuration ---------------------------------------------------
34
34
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ overrides: "pyexcel.yaml"
2
2
project : " pyexcel-io"
3
3
name : pyexcel-io
4
4
nick_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
8
8
copyright_year : 2015-2020
9
9
moban_command : false
10
10
is_on_conda : true
Original file line number Diff line number Diff line change 7
7
:copyright: (c) 2014-2020 by Onni Software Ltd.
8
8
:license: New BSD License, see LICENSE for more details
9
9
"""
10
+ import sys
10
11
import logging
11
12
from io import BytesIO , StringIO # noqa: F401
12
13
from collections import OrderedDict # noqa: F401
@@ -22,6 +23,7 @@ def emit(self, record):
22
23
23
24
text_type = str
24
25
irange = range
26
+ PY2 = sys .version [0 ] == 2
25
27
26
28
27
29
def isstream (instance ):
Original file line number Diff line number Diff line change 32
32
33
33
NAME = "pyexcel-io"
34
34
AUTHOR = "chfw"
35
- VERSION = "0.6.1 "
35
+ VERSION = "0.6.2 "
36
36
37
37
LICENSE = "New BSD"
38
38
DESCRIPTION = (
39
39
"A python library to read and write structured data in csv, zipped csv" +
40
40
"format and to/from databases"
41
41
)
42
42
URL = "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
44
44
FILES = ["README.rst" , "CHANGELOG.rst" ]
45
45
KEYWORDS = [
46
46
"python" ,
85
85
}
86
86
# You do not need to read beyond this line
87
87
PUBLISH_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" )
90
90
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
91
91
"Please install gease to enable it." )
92
92
UPLOAD_FAILED_MSG = (
You can’t perform that action at this time.
0 commit comments