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.
This commit is contained in:
Markus Kaiserswerth
2018-06-25 12:15:35 +02:00
parent c5dfc013eb
commit 48e2283172
+1 -2
View File
@@ -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']