Changed setup.py install_requirements to require sqlalchemy at least of version
authortilly-Q <nattilypigeonfowl@gmail.com>
Thu, 13 Feb 2014 19:00:09 +0000 (14:00 -0500)
committertilly-Q <nattilypigeonfowl@gmail.com>
Thu, 13 Feb 2014 19:00:09 +0000 (14:00 -0500)
0.8.0. Our code was crashing when running with sqlalchemy 0.7.4 because of
imports like sqlalchemy.orm.with_polymorphic

setup.py

index 59101a9ef170ff3d428cc5fad090a2b19b4259ee..23239f0cb436699d3827eda9fec6690dd7220248 100644 (file)
--- 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',