diff options
| author | Claude Paroz <claude@2xlibre.net> | 2020-02-16 14:05:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-16 15:05:20 +0200 |
| commit | a44275872999314240bc7fb3f0a6e82cee9abfd6 (patch) | |
| tree | a12a06c768b362fe6b95246356832e59c07573d9 /setup.py | |
| parent | 21479001a71864d44e95825b86bc6e432de40f58 (diff) | |
| download | tablib-a44275872999314240bc7fb3f0a6e82cee9abfd6.tar.gz | |
Fixes #457 - Bumped openpyxl dependency to 2.6.0 (#458)
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'], }, ) |
