Fixes #457 - Bumped openpyxl dependency to 2.6.0 (#458)

This commit is contained in:
Claude Paroz
2020-02-16 14:05:20 +01:00
committed by GitHub
parent 21479001a7
commit a442758729
3 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -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'],
},
)