Skip to content

Commit 4433ad7

Browse files
committed
🐛 pin openpyxl < 2.6. pyexcel/pyexcel-io#66
1 parent e9888e5 commit 4433ad7

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
lines changed

Diff for: CHANGELOG.rst

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

4+
0.5.7 - 15.02.2019
5+
--------------------------------------------------------------------------------
6+
7+
Added
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. pyexcel-io#66 pin openpyxl < 2.6.0
11+
412
0.5.6 - 26.03.2018
513
--------------------------------------------------------------------------------
614

Diff for: changelog.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-xlsx
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: Added
6+
details:
7+
- 'pyexcel-io#66 pin openpyxl < 2.6.0'
8+
date: 15.02.2019
9+
version: 0.5.7
410
- changes:
511
- action: Added
612
details:

Diff for: docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
author = 'Onni Software Ltd.'
2828

2929
# The short X.Y version
30-
version = '0.5.6'
30+
version = '0.5.7'
3131
# The full version, including alpha/beta/rc tags
32-
release = '0.5.6'
32+
release = '0.5.7'
3333

3434

3535
# -- General configuration ---------------------------------------------------

Diff for: pyexcel-xlsx.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ overrides: "pyexcel.yaml"
22
name: "pyexcel-xlsx"
33
project: "pyexcel-xlsx"
44
nick_name: xlsx
5-
version: 0.5.6
6-
current_version: 0.5.6
7-
release: 0.5.6
5+
version: 0.5.7
6+
current_version: 0.5.7
7+
release: 0.5.7
88
file_type: xlsx
99
gitignore_language: Python
1010
dependencies:

Diff for: setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525

2626
NAME = 'pyexcel-xlsx'
2727
AUTHOR = 'C.W.'
28-
VERSION = '0.5.6'
28+
VERSION = '0.5.7'
2929
3030
LICENSE = 'New BSD'
3131
DESCRIPTION = (
3232
'A wrapper library to read, manipulate and write data in xlsx and xlsm' +
3333
'format'
3434
)
3535
URL = 'https://github.com/pyexcel/pyexcel-xlsx'
36-
DOWNLOAD_URL = '%s/archive/0.5.6.tar.gz' % URL
36+
DOWNLOAD_URL = '%s/archive/0.5.7.tar.gz' % URL
3737
FILES = ['README.rst', 'CHANGELOG.rst']
3838
KEYWORDS = [
3939
'python',
@@ -66,8 +66,8 @@
6666
# You do not need to read beyond this line
6767
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
6868
sys.executable)
69-
GS_COMMAND = ('gs pyexcel-xlsx v0.5.6 ' +
70-
"Find 0.5.6 in changelog for more details")
69+
GS_COMMAND = ('gs pyexcel-xlsx v0.5.7 ' +
70+
"Find 0.5.7 in changelog for more details")
7171
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
7272
'Please install gease to enable it.')
7373
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)