diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-24 07:53:09 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-24 07:53:09 -0400 |
commit | c813804af6c916d8cfdd175ad031b4042b13bfab (patch) | |
tree | 69bf44dc640882afc43c1ae82ec2754e859a6d57 | |
parent | 7602b24930c45c097ec4c5266905a64a0e41f839 (diff) | |
download | python-coveragepy-git-c813804af6c916d8cfdd175ad031b4042b13bfab.tar.gz |
Tox doesn't need envpython, python is fine.
-rw-r--r-- | tox_wheels.ini | 2 | ||||
-rw-r--r-- | tox_winkits.ini | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tox_wheels.ini b/tox_wheels.ini index 691ca5b1..57fcd6dc 100644 --- a/tox_wheels.ini +++ b/tox_wheels.ini @@ -7,7 +7,7 @@ toxworkdir = {toxinidir}/.tox_kits [testenv] commands = - {envpython} setup.py bdist_wheel {posargs} + python setup.py bdist_wheel {posargs} deps = wheel diff --git a/tox_winkits.ini b/tox_winkits.ini index 85b318ed..1d8b002e 100644 --- a/tox_winkits.ini +++ b/tox_winkits.ini @@ -7,4 +7,4 @@ toxworkdir = {toxinidir}/.tox_kits [testenv] commands = - {envpython} setup.py bdist_wininst {posargs} + python setup.py bdist_wininst {posargs} |