From aff5f007b345263a765d325b7d406244b54855f2 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 28 Feb 2018 12:09:53 +0100 Subject: [PATCH] Improve fabfile --- fabfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 05817e8f2..9eadfe32b 100644 --- a/fabfile.py +++ b/fabfile.py @@ -46,6 +46,7 @@ def env(lang='python3.6'): print(venv_local('python --version', capture=True)) venv_local('pip install --upgrade setuptools --no-cache-dir') venv_local('pip install pytest --no-cache-dir') + venv_local('pip install wheel') def install(): @@ -73,7 +74,7 @@ def wheel(): def clean(): with lcd(path.dirname(__file__)): with virtualenv(VENV_DIR) as venv_local: - local('python setup.py clean --all') + venv_local('python setup.py clean --all') def test():