Fix py27dj110 tox environment: really use Django 1.10

That specific testenv was added before the release of Django 1.10,
so the pip line was not capped and without this change tox installs
the last version (currently 1.11).

Change-Id: Icb669a9e999118f4d4302449d1b0d0ce2abb8c2c
This commit is contained in:
Luigi Toscano 2017-08-01 18:51:06 +02:00
parent e73f9ec7c6
commit 33d9525c1d
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ commands = pip install django>=1.9,<1.10
[testenv:py27dj110]
basepython = python2.7
commands = pip install django --pre --upgrade
commands = pip install django>=1.10,<1.11
/bin/bash run_tests.sh -N --no-pep8 {posargs}
[testenv:py27integration]