summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2020-02-16 14:05:20 +0100
committerGitHub <noreply@github.com>2020-02-16 15:05:20 +0200
commita44275872999314240bc7fb3f0a6e82cee9abfd6 (patch)
treea12a06c768b362fe6b95246356832e59c07573d9 /setup.py
parent21479001a71864d44e95825b86bc6e432de40f58 (diff)
downloadtablib-a44275872999314240bc7fb3f0a6e82cee9abfd6.tar.gz
Fixes #457 - Bumped openpyxl dependency to 2.6.0 (#458)
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index d6f474b..0985813 100755
--- a/setup.py
+++ b/setup.py
@@ -38,13 +38,13 @@ setup(
],
python_requires='>=3.5',
extras_require={
- 'all': ['markuppy', 'odfpy', 'openpyxl>=2.4.0', 'pandas', 'pyyaml', 'tabulate', 'xlrd', 'xlwt'],
+ 'all': ['markuppy', 'odfpy', 'openpyxl>=2.6.0', 'pandas', 'pyyaml', 'tabulate', 'xlrd', 'xlwt'],
'cli': ['tabulate'],
'html': ['markuppy'],
'ods': ['odfpy'],
'pandas': ['pandas'],
'xls': ['xlrd', 'xlwt'],
- 'xlsx': ['openpyxl>=2.4.0'],
+ 'xlsx': ['openpyxl>=2.6.0'],
'yaml': ['pyyaml'],
},
)