From 6c8a1d49a84ac82ffc98f105f24091cabce88984 Mon Sep 17 00:00:00 2001 From: Rob Cresswell Date: Thu, 4 Aug 2016 21:59:25 +0100 Subject: [PATCH] Fix django 1.10 tox env I got carried away and capped the dj110 tox end at <2.0. It should be capped at <1.11. Change-Id: I40064b90dc2a340304b6da40f80a6b4e0ffa8a9c --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c0d24e81..4d515c4f 100644 --- a/tox.ini +++ b/tox.ini @@ -34,7 +34,7 @@ commands = pip install django>=1.9,<1.10 python openstack_auth/tests/run_tests.py {posargs} [testenv:py27dj110] -commands = pip install django>=1.10,<2.0 +commands = pip install django>=1.10,<1.11 python openstack_auth/tests/run_tests.py {posargs} [testenv:pep8]