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')