Raise tox min version to avoid maximum recursion issue

There was regression in tox 2.2.0 for env-substitution
with setenv.

https://bitbucket.org/hpk42/tox/issues/99/environment-variable-usage-schema-env-xxx

It is fixed in 2.3.1
https://bitbucket.org/hpk42/tox/issues/285/tox-220-breaks-some-toxini-config-files

So no issue with 2.3.1, but let's raise the min version in tox.ini
to avoid maximum recursion issue.

Change-Id: Ie808e46a90a681b21c30998d2fc867981c2c05fd
Closes-Bug: #1534006
This commit is contained in:
Ghanshyam 2016-01-14 17:15:29 +09:00
parent 4fd3ddb1fd
commit 3a59e1ef92
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[tox]
envlist = pep8,py34,py27
minversion = 1.6
minversion = 2.3.1
skipsdist = True
[tempestenv]