Fix SQLAlchemy version for python 2.6

Tests revealed, that under python 2.6, only SQLAlchemy<1.1 is supported
This commit is contained in:
Jan Vlcinsky
2018-04-13 23:55:16 +02:00
parent 4d90d6d418
commit 55fe42a4ae
+4 -1
View File
@@ -45,7 +45,10 @@ class PublishCommand(Command):
sys.exit()
requires = ['SQLAlchemy', 'tablib', 'docopt']
requires = ['SQLAlchemy;python_version>="3.0"',
'SQLAlchemy<1.1;python_version<"3.0"',
'tablib',
'docopt']
version = '0.5.3'