From bdd1c930aa06d6adee8725f440144134bc04c778 Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Thu, 21 May 2015 20:14:16 -0700 Subject: [PATCH] Require SQLAlchemy < 1.0 It appears SQLAlchemy 1.0 breaks something about the way we're using bindparam in pokedex.db.multilang. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 896a9f1..bc6f417 100644 --- a/setup.py +++ b/setup.py @@ -8,8 +8,8 @@ setup( 'pokedex': ['data/csv/*.csv'] }, install_requires=[ - 'SQLAlchemy>=0.9.7', - 'whoosh>=2.5,<2.7', + 'SQLAlchemy >=0.9.7, <1.0', + 'whoosh >=2.5, <2.7', 'markdown', 'construct', ],