Remove version caps on sqlalchemy and alembic.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 2 Mar 2016 19:13:42 +0000 (11:13 -0800)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 2 Mar 2016 19:20:47 +0000 (11:20 -0800)
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.

guix-env.scm
setup.py

index ac9e67fca1f55899b32f3e0f38f86932fe005c3e..abbbbc8158085fa787872fc08603ce7d94077c0e 100644 (file)
     (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)
        ("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)
index bd6209137ba8208e533fdf29079e03fed5da7498..259fd95a6a98a4afdb36082013efd2d9e131ea57 100644 (file)
--- 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',