diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-02 11:13:42 -0800 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-02 11:20:47 -0800 |
commit | 0c9c5cab62f3983a80c3101c9484de005f0fb1aa (patch) | |
tree | 06e8c27a70404d093d13b3b0c6b211f3755ec429 /setup.py | |
parent | 690597ef83ed70bb23dde15659464535f91b5b2a (diff) | |
download | mediagoblin-0c9c5cab62f3983a80c3101c9484de005f0fb1aa.tar.lz mediagoblin-0c9c5cab62f3983a80c3101c9484de005f0fb1aa.tar.xz mediagoblin-0c9c5cab62f3983a80c3101c9484de005f0fb1aa.zip |
Remove version caps on sqlalchemy and alembic.
Code seems to pass fine after the cap is removed. Whatever dependency
issues we were running into before don't seem to be an issue now.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -49,7 +49,7 @@ if PY2: install_requires = [ 'waitress', - 'alembic==0.6.6', + 'alembic', 'python-dateutil', 'wtforms', 'py-bcrypt', @@ -63,7 +63,7 @@ install_requires = [ 'WebTest>=2.0.18', 'ConfigObj', 'Markdown', - 'sqlalchemy<1.1.0, >0.9.9', + 'sqlalchemy', 'itsdangerous', 'pytz', 'sphinx', |