Try to fix fabfile

This commit is contained in:
Matthew Honnibal 2018-02-28 03:30:44 +01:00
parent aa96f769d2
commit 1b840f1ac1

2
fabfile.py vendored
View File

@ -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: