Require SQLAlchemy < 1.0

It appears SQLAlchemy 1.0 breaks something about the way we're using bindparam
in pokedex.db.multilang.
This commit is contained in:
Andrew Ekstedt 2015-05-21 20:14:16 -07:00
parent 93f20a484d
commit bdd1c930aa

View file

@ -8,8 +8,8 @@ setup(
'pokedex': ['data/csv/*.csv'] 'pokedex': ['data/csv/*.csv']
}, },
install_requires=[ install_requires=[
'SQLAlchemy>=0.9.7', 'SQLAlchemy >=0.9.7, <1.0',
'whoosh>=2.5,<2.7', 'whoosh >=2.5, <2.7',
'markdown', 'markdown',
'construct', 'construct',
], ],