From 6d0cafdccaf83d8dbffde93f63139e3783eeeb2b Mon Sep 17 00:00:00 2001 From: tilly-Q Date: Thu, 13 Feb 2014 14:00:09 -0500 Subject: [PATCH] Changed setup.py install_requirements to require sqlalchemy at least of version 0.8.0. Our code was crashing when running with sqlalchemy 0.7.4 because of imports like sqlalchemy.orm.with_polymorphic --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 59101a9e..23239f0c 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ try: 'webtest<2', 'ConfigObj', 'Markdown', - 'sqlalchemy<0.9.0', + 'sqlalchemy<0.9.0, =>0.8.0', 'sqlalchemy-migrate', 'mock', 'itsdangerous',