Limit django supported versions

Limit the supported version to Django 1.6.x and 1.7.x
This commit is contained in:
Marcus Martins 2015-01-05 16:57:50 -08:00
parent 7c22166caf
commit 123e3dc7be
3 changed files with 2 additions and 4 deletions

View file

@ -8,8 +8,6 @@ python:
- "pypy"
env:
- DJANGO=Django==1.4.17
- DJANGO=Django==1.5.12
- DJANGO=Django==1.6.9
- DJANGO=Django==1.7.2

View file

@ -120,7 +120,7 @@ to improve the login.
requirements
============
- django: 1.4.x, 1.5.x, 1.6.x, 1.7.x
- django: 1.6.x, 1.7.x
- redis
- python: 2.6.x, 2.7.x, 3.3.x, 3.4.x, PyPy

View file

@ -37,6 +37,6 @@ setup(name='django-defender',
author_email='kencochrane@gmail.com',
license='Apache 2',
packages=['defender'],
install_requires=['Django>=1.4,<1.7', 'redis==2.10.3', 'hiredis==0.1.4', ],
install_requires=['Django>=1.6,<1.8', 'redis==2.10.3', 'hiredis==0.1.4', ],
tests_require=['mock', 'mockredispy', 'coverage', 'celery'],
)