🐛 try support pyexcel-xls 0.4.1 on python 3.6. fix #94

This commit is contained in:
chfw 2020-10-08 00:22:38 +01:00
parent 2ebe9559ad
commit 5afbe747f4
6 changed files with 19 additions and 11 deletions

View File

@ -1,6 +1,12 @@
name: pyexcel-io
organisation: pyexcel
releases:
- changes:
- action: updated
details:
- "`#94`: keep backward compatibility for pyexcel-xls 0.4.1"
version: 0.6.2
date: 7.10.2020
- changes:
- action: removed
details:

View File

@ -5,12 +5,12 @@ Common parameters
'library' option is added
--------------------------------------------------------------------------------
In order to have overlapping plugins co-exit, 'library' option is added to
In order to have overlapping plugins co-exist, 'library' option is added to
get_data and save_data.
get_data only parameters
-------------------------------
--------------------------------------------------------------------------------
keep_trailing_empty_cells
********************************************************************************

View File

@ -26,9 +26,9 @@ project = 'pyexcel-io'
copyright = '2015-2020 Onni Software Ltd.'
author = 'chfw'
# The short X.Y version
version = '0.6.1'
version = '0.6.2'
# The full version, including alpha/beta/rc tags
release = '0.6.1'
release = '0.6.2'
# -- General configuration ---------------------------------------------------

View File

@ -2,9 +2,9 @@ overrides: "pyexcel.yaml"
project: "pyexcel-io"
name: pyexcel-io
nick_name: io
version: 0.6.1
current_version: 0.6.1
release: 0.6.1
version: 0.6.2
current_version: 0.6.2
release: 0.6.2
copyright_year: 2015-2020
moban_command: false
is_on_conda: true

View File

@ -7,6 +7,7 @@
:copyright: (c) 2014-2020 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details
"""
import sys
import logging
from io import BytesIO, StringIO # noqa: F401
from collections import OrderedDict # noqa: F401
@ -22,6 +23,7 @@ except ImportError:
text_type = str
irange = range
PY2 = sys.version[0] == 2
def isstream(instance):

View File

@ -32,7 +32,7 @@ except (ValueError, UnicodeError, locale.Error):
NAME = "pyexcel-io"
AUTHOR = "chfw"
VERSION = "0.6.1"
VERSION = "0.6.2"
EMAIL = "info@pyexcel.org"
LICENSE = "New BSD"
DESCRIPTION = (
@ -40,7 +40,7 @@ DESCRIPTION = (
"format and to/from databases"
)
URL = "https://github.com/pyexcel/pyexcel-io"
DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.6.2.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
@ -85,8 +85,8 @@ EXTRAS_REQUIRE = {
}
# 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-io v0.6.1 " +
"Find 0.6.1 in changelog for more details")
GS_COMMAND = ("gs pyexcel-io v0.6.2 " +
"Find 0.6.2 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.")
UPLOAD_FAILED_MSG = (