From 39e79b2d49dba7ecabe1d747b933232d58c7565a Mon Sep 17 00:00:00 2001 From: Marko Koivusalo Date: Tue, 31 Jan 2012 20:12:15 +0000 Subject: [PATCH] As temporary measure, limit new installations SQLAlchemy to 0.7.4 due problems/changes in 0.7.5. Refs #1477. git-svn-id: http://svn.flexget.com/trunk@2691 3942dd89-8c5d-46d7-aeed-044bccf3e60c --- pavement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pavement.py b/pavement.py index 757cef40ac..438e03edc1 100644 --- a/pavement.py +++ b/pavement.py @@ -24,7 +24,7 @@ author_email='marko.koivusalo@gmail.com', license='MIT', url='http://flexget.com', - install_requires=['FeedParser>=5.1', 'SQLAlchemy >=0.7, <0.8', 'PyYAML', 'BeautifulSoup>=3.2, <3.3', + install_requires=['FeedParser>=5.1', 'SQLAlchemy==0.7.4', 'PyYAML', 'BeautifulSoup>=3.2, <3.3', 'html5lib>=0.11', 'PyRSS2Gen', 'pynzb', 'progressbar', 'jinja2', 'flask', 'cherrypy', 'requests>=0.9.1, <0.10'], packages=find_packages(exclude=['tests']),