Skip to content

Commit

Permalink
Fix errors when running tox locally.
Browse files Browse the repository at this point in the history
Using Django>=1.7,<1.8 actually grabbed Django 1.8b. This specifies to
grab the version of Django that's less than 1.8a which will be the
latest of 1.7
  • Loading branch information
tim-schilling committed Feb 26, 2015
1 parent 2ab2c83 commit 1cd10a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -89,25 +89,25 @@ deps =
[testenv:py27-django17]
basepython = python2.7
deps =
Django>=1.7,<1.8
Django>=1.7,<1.8a
{[testenv]deps}

[testenv:py32-django17]
basepython = python3.2
deps =
Django>=1.7,<1.8
Django>=1.7,<1.8a
{[testenv]deps}

[testenv:py33-django17]
basepython = python3.3
deps =
Django>=1.7,<1.8
Django>=1.7,<1.8a
{[testenv]deps}

[testenv:py34-django17]
basepython = python3.4
deps =
Django>=1.7,<1.8
Django>=1.7,<1.8a
{[testenv]deps}

[testenv:flake8]
Expand Down

0 comments on commit 1cd10a9

Please sign in to comment.