From eaef36e4a50e46a81904afafcbf90edef6736a13 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 28 Feb 2018 01:56:14 +0100 Subject: [PATCH] Fix fab install command --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index c0a52e135..f5e3d4f7c 100644 --- a/fabfile.py +++ b/fabfile.py @@ -54,9 +54,9 @@ def install(): def make(): with lcd(path.dirname(__file__)): with virtualenv(VENV_DIR) as venv_local: + venv_local('pip install wheel') venv_local('pip install cython') venv_local('pip install murmurhash') - venv_local('pip install wheel') venv_local('pip install -r requirements.txt') venv_local('python setup.py build_ext --inplace')