mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
Limit django supported versions
Limit the supported version to Django 1.6.x and 1.7.x
This commit is contained in:
parent
7c22166caf
commit
123e3dc7be
3 changed files with 2 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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'],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue