aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Bobrov <breton@cynicmansion.ru>2016-01-21 22:26:39 +0300
committerChristopher Allan Webber <cwebber@dustycloud.org>2016-02-11 10:40:50 -0800
commit7c1287b66c52b01b04ab40494a5ab11b5ba7da41 (patch)
tree9eefc1f522d93219012943ee8747b6b9ca0f043b
parent6199c8da8d0f615c695bdc9c6dd9174bcb58e9e4 (diff)
downloadmediagoblin-7c1287b66c52b01b04ab40494a5ab11b5ba7da41.tar.lz
mediagoblin-7c1287b66c52b01b04ab40494a5ab11b5ba7da41.tar.xz
mediagoblin-7c1287b66c52b01b04ab40494a5ab11b5ba7da41.zip
Upgrade sqlalchemy and sa-migrate
Our versions were too old. And not compatible with python3.
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index e8c4b034..c5e0f9ab 100644
--- 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',