aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2016-11-30 13:33:02 +0100
committerAlex Gaynor <alex.gaynor@gmail.com>2016-11-30 07:33:02 -0500
commitdbf183506c5c9c5f5d8e4a97beefc009974ed0a3 (patch)
tree73c66c7cc26c6cef38546951ce507f6224a193af /tox.ini
parent22745ebf3e2d5bef8e089d8fb6111ff8654129ca (diff)
downloadcryptography-dbf183506c5c9c5f5d8e4a97beefc009974ed0a3.tar.gz
cryptography-dbf183506c5c9c5f5d8e4a97beefc009974ed0a3.tar.bz2
cryptography-dbf183506c5c9c5f5d8e4a97beefc009974ed0a3.zip
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 <christian@python.org>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini1
1 files changed, 1 insertions, 0 deletions
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]