From 19013b685a1f979386301e20cae833cada3a8589 Mon Sep 17 00:00:00 2001 From: jaska Date: Sat, 12 Dec 2020 17:55:33 +0000 Subject: [PATCH] Prepare 0.6.2 (#42) * :books: the correct place to update dependencies in pyexcel family. relatedt to #41 * :books: and update change log. related to #41 * This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst Co-authored-by: chfw --- CHANGELOG.rst | 8 ++++++++ changelog.yml | 6 ++++++ docs/source/conf.py | 4 ++-- pyexcel-xls.yml | 8 ++++---- setup.py | 8 ++++---- 5 files changed, 24 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8cf4785..613b1e5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Change log ================================================================================ +0.6.2 - 12.12.2020 +-------------------------------------------------------------------------------- + +**Updated** + +#. lock down xlrd version less than version 2.0, because 2.0+ does not support + xlsx read + 0.6.1 - 21.10.2020 -------------------------------------------------------------------------------- diff --git a/changelog.yml b/changelog.yml index a1ceb05..d7e01e3 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,6 +1,12 @@ name: pyexcel-xls organisation: pyexcel releases: +- changes: + - action: Updated + details: + - "lock down xlrd version less than version 2.0, because 2.0+ does not support xlsx read" + date: 12.12.2020 + version: 0.6.2 - changes: - action: Updated details: diff --git a/docs/source/conf.py b/docs/source/conf.py index 1ed7aba..5e5b7cd 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,9 +26,9 @@ project = 'pyexcel-xls' copyright = '2015-2020 Onni Software Ltd.' author = 'C.W.' # 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 --------------------------------------------------- diff --git a/pyexcel-xls.yml b/pyexcel-xls.yml index 2e474a2..4b55499 100644 --- a/pyexcel-xls.yml +++ b/pyexcel-xls.yml @@ -1,14 +1,14 @@ overrides: "pyexcel.yaml" name: "pyexcel-xls" nick_name: xls -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 file_type: xls is_on_conda: true dependencies: - pyexcel-io>=0.6.2 - - xlrd + - xlrd<2 - xlwt test_dependencies: - pyexcel diff --git a/setup.py b/setup.py index 135f172..fafb4b7 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ except (ValueError, UnicodeError, locale.Error): NAME = "pyexcel-xls" AUTHOR = "C.W." -VERSION = "0.6.1" +VERSION = "0.6.2" EMAIL = "info@pyexcel.org" LICENSE = "New BSD" DESCRIPTION = ( @@ -40,7 +40,7 @@ DESCRIPTION = ( "reads xlsx and xlsm format" ) URL = "https://github.com/pyexcel/pyexcel-xls" -DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.6.2.tar.gz" % URL FILES = ["README.rst","CONTRIBUTORS.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -81,8 +81,8 @@ EXTRAS_REQUIRE = { PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable) HERE = os.path.abspath(os.path.dirname(__file__)) -GS_COMMAND = ("gease pyexcel-xls v0.6.1 " + - "Find 0.6.1 in changelog for more details") +GS_COMMAND = ("gease pyexcel-xls 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 = (