aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2014-04-03 14:20:44 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2014-04-03 14:20:44 -0500
commitb19491c535332243b88ba541e31c0469b9608f25 (patch)
tree26b68bea96d2791fd1b11a7d11934cc4a4ab2638 /setup.py
parent4a0778b3c1474c160fdc98995286f7ee2566470e (diff)
downloadmediagoblin-b19491c535332243b88ba541e31c0469b9608f25.tar.lz
mediagoblin-b19491c535332243b88ba541e31c0469b9608f25.tar.xz
mediagoblin-b19491c535332243b88ba541e31c0469b9608f25.zip
specify older sqlalchemy-migrate because pbr ruins everything.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b55a1c40..59f0ab8f 100644
--- a/setup.py
+++ b/setup.py
@@ -59,7 +59,10 @@ try:
'ConfigObj',
'Markdown',
'sqlalchemy<0.9.0, >0.8.0',
- 'sqlalchemy-migrate',
+ # 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.
+ 'sqlalchemy-migrate<0.8',
'mock',
'itsdangerous',
'pytz',