Skip to content

Commit 19013b6

Browse files
authored
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 <[email protected]>
1 parent 488dd02 commit 19013b6

File tree

5 files changed

+24
-10
lines changed

5 files changed

+24
-10
lines changed

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
================================================================================
33

4+
0.6.2 - 12.12.2020
5+
--------------------------------------------------------------------------------
6+
7+
**Updated**
8+
9+
#. lock down xlrd version less than version 2.0, because 2.0+ does not support
10+
xlsx read
11+
412
0.6.1 - 21.10.2020
513
--------------------------------------------------------------------------------
614

changelog.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-xls
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- "lock down xlrd version less than version 2.0, because 2.0+ does not support xlsx read"
8+
date: 12.12.2020
9+
version: 0.6.2
410
- changes:
511
- action: Updated
612
details:

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
copyright = '2015-2020 Onni Software Ltd.'
2727
author = 'C.W.'
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

pyexcel-xls.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-xls"
33
nick_name: xls
4-
version: 0.6.1
5-
current_version: 0.6.1
6-
release: 0.6.1
4+
version: 0.6.2
5+
current_version: 0.6.2
6+
release: 0.6.2
77
file_type: xls
88
is_on_conda: true
99
dependencies:
1010
- pyexcel-io>=0.6.2
11-
- xlrd
11+
- xlrd<2
1212
- xlwt
1313
test_dependencies:
1414
- pyexcel

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232

3333
NAME = "pyexcel-xls"
3434
AUTHOR = "C.W."
35-
VERSION = "0.6.1"
35+
VERSION = "0.6.2"
3636
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"A wrapper library to read, manipulate and write data in xls format. It" +
4040
"reads xlsx and xlsm format"
4141
)
4242
URL = "https://github.com/pyexcel/pyexcel-xls"
43-
DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL
43+
DOWNLOAD_URL = "%s/archive/0.6.2.tar.gz" % URL
4444
FILES = ["README.rst","CONTRIBUTORS.rst", "CHANGELOG.rst"]
4545
KEYWORDS = [
4646
"python",
@@ -81,8 +81,8 @@
8181
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
8282
HERE = os.path.abspath(os.path.dirname(__file__))
8383

84-
GS_COMMAND = ("gease pyexcel-xls v0.6.1 " +
85-
"Find 0.6.1 in changelog for more details")
84+
GS_COMMAND = ("gease pyexcel-xls v0.6.2 " +
85+
"Find 0.6.2 in changelog for more details")
8686
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8787
"Please install gease to enable it.")
8888
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)