From a096d9a9b5f13b7542564db03bf24f21c8425773 Mon Sep 17 00:00:00 2001 From: Jan Vlcinsky Date: Sun, 15 Apr 2018 00:30:36 +0200 Subject: [PATCH] Fix #142: failure to export to XLSX (downgrade openpyxl) This fix shall be removed as soon as tablib gets the problem resolved. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4548143..48ffc0c 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,7 @@ class PublishCommand(Command): requires = ['SQLAlchemy;python_version>="3.0"', 'SQLAlchemy<1.1;python_version<"3.0"', + 'openpyxl<2.5.0', # temporary fix to issue #142 'tablib', 'docopt'] version = '0.5.3'