From 1b840f1ac1a4035e60980191377faf37458628e8 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 28 Feb 2018 03:30:44 +0100 Subject: [PATCH] Try to fix fabfile --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 877006b2f..b93b897ff 100644 --- a/fabfile.py +++ b/fabfile.py @@ -56,7 +56,7 @@ def make(): with lcd(path.dirname(__file__)): venv_local('pip install cython') venv_local('pip install -r requirements.txt') - venv_local('PYTHONPATH=`pwd` python setup.py build_ext --inplace') + venv_local('python setup.py build_ext --inplace', env_vars=['PYTHONPATH=`pwd`']) def sdist(): with virtualenv(VENV_DIR) as venv_local: