From 69bd5fe216c59f9c4d6a6bfe80008c45c6ddfc91 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 2 Oct 2014 15:48:56 -0700 Subject: [PATCH] Fix tox2travis. --- resources/python/tox2travis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/python/tox2travis.py b/resources/python/tox2travis.py index b75675eb..190a97d3 100755 --- a/resources/python/tox2travis.py +++ b/resources/python/tox2travis.py @@ -11,7 +11,7 @@ class TravisFromTox(object): def build_travis_dict(self): return { 'language': 'python', - 'install': ['pip install -e hg+https://ivanmalison@bitbucket.org/hpk42/tox#egg=tox'], + 'install': ['pip install "tox>=1.8.0"'], 'script': 'tox', 'env': self._get_environment_variables() }