mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
Test correct versions of Django
It looks like our versions ranges weren't correct.
This commit is contained in:
parent
e136957fc0
commit
7c0511bd81
1 changed files with 6 additions and 6 deletions
12
tox.ini
12
tox.ini
|
|
@ -11,35 +11,35 @@ commands = django-admin.py test core --settings=settings
|
|||
[testenv:py27-django14]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
Django>=1.4
|
||||
Django>=1.4,<1.5
|
||||
Pillow
|
||||
|
||||
[testenv:py27-django13]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
Django>=1.3,<=1.4
|
||||
Django>=1.3,<1.4
|
||||
Pillow
|
||||
|
||||
[testenv:py27-django12]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
Django>=1.2,<=1.3
|
||||
Django>=1.2,<1.3
|
||||
Pillow
|
||||
|
||||
[testenv:py26-django14]
|
||||
basepython = python2.6
|
||||
deps =
|
||||
Django>=1.4
|
||||
Django>=1.4,<1.5
|
||||
Pillow
|
||||
|
||||
[testenv:py26-django13]
|
||||
basepython = python2.6
|
||||
deps =
|
||||
Django>=1.3,<=1.4
|
||||
Django>=1.3,<1.4
|
||||
Pillow
|
||||
|
||||
[testenv:py26-django12]
|
||||
basepython = python2.6
|
||||
deps =
|
||||
Django>=1.2,<=1.3
|
||||
Django>=1.2,<1.3
|
||||
Pillow
|
||||
|
|
|
|||
Loading…
Reference in a new issue