From 314173afdd3638963393b45cf6d18f77aa1eb074 Mon Sep 17 00:00:00 2001 From: Bouke Haarsma Date: Tue, 7 Apr 2015 21:30:33 +0200 Subject: [PATCH] Fixed issue with pip unable to install package --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 66d75d7d5..986ae84da 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ license='MIT', packages=find_packages(exclude=('example', 'tests')), install_requires=[ - 'Django>=1.4.2,<1.4.99,>=1.7,<1.8.99', + 'Django>=1.4.2,<1.8.99,!=1.5,!=1.6', 'django_otp>=0.2.0,<0.2.99', 'qrcode>=4.0.0,<4.99', ],