aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2016-03-02 11:13:42 -0800
committerChristopher Allan Webber <cwebber@dustycloud.org>2016-03-02 11:20:47 -0800
commit0c9c5cab62f3983a80c3101c9484de005f0fb1aa (patch)
tree06e8c27a70404d093d13b3b0c6b211f3755ec429
parent690597ef83ed70bb23dde15659464535f91b5b2a (diff)
downloadmediagoblin-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.
-rw-r--r--guix-env.scm4
-rw-r--r--setup.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/guix-env.scm b/guix-env.scm
index ac9e67fc..abbbbc81 100644
--- a/guix-env.scm
+++ b/guix-env.scm
@@ -128,7 +128,7 @@
(native-inputs
`(("python-pytest" ,python-pytest)))
(propagated-inputs
- `(("python-alembic" ,python-alembic-0.6.6)
+ `(("python-alembic" ,python-alembic)
("python-pytest-xdist" ,python-pytest-xdist)
("python-celery" ,python-celery)
("python-kombu" ,python-kombu)
@@ -155,7 +155,7 @@
("python-six" ,python-six)
("python-sphinx" ,python-sphinx)
("python-docutils" ,python-docutils)
- ("python-sqlalchemy" ,python-sqlalchemy-0.9.10)
+ ("python-sqlalchemy" ,python-sqlalchemy)
("python-unidecode" ,python-unidecode)
("python-werkzeug" ,python-werkzeug)
("python-exif-read" ,python-exif-read)
diff --git a/setup.py b/setup.py
index bd620913..259fd95a 100644
--- a/setup.py
+++ b/setup.py
@@ -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',