From dc5fa090dfa541839f58959cb8890c3bd20f0258 Mon Sep 17 00:00:00 2001 From: Vu Dinh Date: Tue, 31 May 2016 12:29:28 -0400 Subject: [PATCH] Fix Django version incompatable for Python 3.3 The current required Django version is 1.9.5 which doesn't support Python 3.3 which causes the Python 3.3 deployment to fail while using django-ex git repo. The Django version is modified to use 1.8.x only to include Python 3.3 support. Signed-off-by: Vu Dinh --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 75cfe4d1..62815ea9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Django==1.9.5 +django>=1.8,<1.9 django-debug-toolbar==1.4 gunicorn==19.4.5 psycopg2==2.6.1