Prepare 0.6.2 (#42)

* 📚 the correct place to update dependencies in pyexcel family. relatedt to #41

* 📚 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 <chfw@users.noreply.github.com>
This commit is contained in:
jaska 2020-12-12 17:55:33 +00:00 committed by GitHub
parent 488dd02893
commit 19013b685a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 10 deletions

View File

@ -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
--------------------------------------------------------------------------------

View File

@ -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:

View File

@ -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 ---------------------------------------------------

View File

@ -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

View File

@ -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 = (