Upgrade sqlalchemy and sa-migrate
authorBoris Bobrov <breton@cynicmansion.ru>
Thu, 21 Jan 2016 19:26:39 +0000 (22:26 +0300)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 11 Feb 2016 18:40:50 +0000 (10:40 -0800)
Our versions were too old. And not compatible with python3.

setup.py

index e8c4b0349dd1648813cd5441235b52c87f385872..c5e0f9ab27e9fd58c97082399cfa19d336e6b8f5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ if PY2:
     # newer sqlalchemy-migrate requires pbr which BREAKS EVERYTHING AND IS
     # TERRIBLE AND IS THE END OF ALL THINGS
     # I'd love to remove this restriction.
-    pyversion_install_requires.append('sqlalchemy-migrate<0.8')
+    pyversion_install_requires.append('sqlalchemy-migrate>=0.9.6')
     # # Annoying.  Please remove once we can!  We only indirectly
     # # use pbr, and currently it breaks things, presumably till
     # # their next release.
@@ -77,7 +77,7 @@ install_requires = [
     'WebTest>=2.0.18',
     'ConfigObj',
     'Markdown',
-    'sqlalchemy<0.9.0, >0.8.0',
+    'sqlalchemy<1.1.0, >0.9.9',
     'itsdangerous',
     'pytz',
     'sphinx',