From dbf183506c5c9c5f5d8e4a97beefc009974ed0a3 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 30 Nov 2016 13:33:02 +0100 Subject: Add minversion to tox.ini (#3292) Cryptography uses new features from tox 2.4. Tox 2.3 happily ignores the new config stanzes and doesn't install dependency. This can lead to strange test failures. With minversion=2.4, tox 2.3 fails to run properly: $ tox ERROR: tox version is 2.3.1, required is at least 2.4 Signed-off-by: Christian Heimes --- tox.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index ce80b184..e29b2d5d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,5 @@ [tox] +minversion = 2.4 envlist = py26,py27,pypy,py33,py34,py35,docs,pep8,py3pep8 [testenv] -- cgit v1.2.3