From 48e22831720492746f120fa2a25f02241d9ee4d2 Mon Sep 17 00:00:00 2001 From: Markus Kaiserswerth Date: Mon, 25 Jun 2018 12:15:35 +0200 Subject: [PATCH] Removed dependency on old SQLAlchemy (for Python 2.6) The conditional dependency on SQLAlchemy is no longer required since support for Python 2.6 was removed. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6fe9bcf..2b73047 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,7 @@ class PublishCommand(Command): sys.exit() -requires = ['SQLAlchemy;python_version>="3.0"', - 'SQLAlchemy<1.1;python_version<"3.0"', +requires = ['SQLAlchemy', 'openpyxl<2.5.0', # temporary fix to issue #142 'tablib>=0.11.4', 'docopt']