From 3a8cc3766363a6d4376a08263b70e6a143b32221 Mon Sep 17 00:00:00 2001 From: David Lord Date: Thu, 28 Sep 2017 10:58:53 -0700 Subject: [PATCH] install argparse for 2.6 closes #2476 --- tox.ini | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/tox.ini b/tox.ini index ff4d7999..45d81b65 100644 --- a/tox.ini +++ b/tox.ini @@ -59,13 +59,8 @@ passenv = CI TRAVIS TRAVIS_* deps = codecov skip_install = true commands = + # install argparse for 2.6 + python -c 'import sys, pip; sys.version_info < (2, 7) and pip.main(["install", "argparse", "-q"])' coverage combine coverage report codecov - -[testenv:detox] -skip_install = true -deps = detox -commands = - detox -e py{36,35,34,33,27,26,py},py{36,27,py}-simplejson,py{36,33,27,26,py}-devel,py{36,33,27,26,py}-lowest - tox -e docs-html,coverage-report