From ee9b42fc7abe3b78c74da3d8dd6e0ff7bfd9062f Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 15 2014 18:33:21 +0000 Subject: Bump the dependency to SQLAlchemy to the version 0.8 or above --- diff --git a/createdb.py b/createdb.py index 3c66696..cc3cbc7 100644 --- a/createdb.py +++ b/createdb.py @@ -1,7 +1,7 @@ #!/usr/bin/python ## These two lines are needed to run on EL6 -__requires__ = ['SQLAlchemy >= 0.7', 'jinja2 >= 2.4'] +__requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources from progit import APP diff --git a/progit/__init__.py b/progit/__init__.py index 1aff8a4..39427d4 100644 --- a/progit/__init__.py +++ b/progit/__init__.py @@ -9,7 +9,7 @@ """ ## These two lines are needed to run on EL6 -__requires__ = ['SQLAlchemy >= 0.7', 'jinja2 >= 2.4'] +__requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources __version__ = '0.1' diff --git a/progit/model.py b/progit/model.py index e6a4850..d42f55e 100644 --- a/progit/model.py +++ b/progit/model.py @@ -8,7 +8,7 @@ """ -__requires__ = ['SQLAlchemy >= 0.7', 'jinja2 >= 2.4'] +__requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources import datetime diff --git a/requirements.txt b/requirements.txt index d0ffbdf..20d20e6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,6 +12,6 @@ python-fedora python-openid python-openid-cla python-openid-teams -sqlalchemy +sqlalchemy >= 0.8 straight.plugin==1.4.0-post-1 wtforms diff --git a/runserver.py b/runserver.py index 6e0ca82..ea7c038 100755 --- a/runserver.py +++ b/runserver.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ## These two lines are needed to run on EL6 -__requires__ = ['SQLAlchemy >= 0.7', 'jinja2 >= 2.4'] +__requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources from progit import APP