From 377008bae2533c6bee1a7f8cdbadbafc0b1e29f0 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 1 Oct 2019 02:43:55 +0200 Subject: [PATCH] Fix sdist for fabfile --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 56570e8e0..fcab493f5 100644 --- a/fabfile.py +++ b/fabfile.py @@ -68,8 +68,8 @@ def make(): def sdist(): with virtualenv(VENV_DIR) as venv_local: with lcd(path.dirname(__file__)): - local("python -m pip install -U setuptools srsly") - local("python setup.py sdist") + venv_local("python -m pip install -U setuptools srsly") + venv_local("python setup.py sdist") def wheel():