From 4a62bed2a1e352c9f27a889d01a2a6cf6d610154 Mon Sep 17 00:00:00 2001 From: "Oleksandr Polieno (nanvel)" Date: Thu, 26 May 2016 11:15:56 +0300 Subject: [PATCH] updated setup.py, django version < 1.7 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4f42900..2225f5e 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,8 @@ def read(fname): packages=find_packages(), include_package_data=True, install_requires=[ - 'django', - 'Pillow', + 'django<1.7', + 'South', + 'Pillow' ], )