From e7bb914cd867bca886e3760c204e2d8fb11233ae Mon Sep 17 00:00:00 2001 From: Jan Vlcinsky Date: Sat, 28 Apr 2018 22:47:42 +0200 Subject: [PATCH] Require tablib>=0.11.4 to resolve #52 Given tablib version removed omnijson and uses stdlib one. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 06bf25e..6fe9bcf 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,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', + 'tablib>=0.11.4', 'docopt'] version = '0.5.3'