From 4c6c3ac8a0cf7ef6388aa4b8e7317e971e2272d6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Nov 28 2014 09:00:41 +0000 Subject: Consistently require SQLAlchemy 0.8+ --- diff --git a/files/progit.wsgi b/files/progit.wsgi index 0bc9e0c..50ecdc1 100644 --- a/files/progit.wsgi +++ b/files/progit.wsgi @@ -4,7 +4,7 @@ # two possible version of python-sqlalchemy and python-jinja2 # These lines make sure the application uses the correct version. #import __main__ -#__main__.__requires__ = ['SQLAlchemy >= 0.7', 'jinja2 >= 2.4'] +#__main__.__requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] #import pkg_resources #import os diff --git a/setup.py b/setup.py index b2de52f..91fa011 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ Setup script """ # Required to build on EL6 -__requires__ = ['SQLAlchemy >= 0.7', 'jinja2 >= 2.4'] +__requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources from setuptools import setup