Fix sdist for fabfile

This commit is contained in:
Matthew Honnibal 2019-10-01 02:43:55 +02:00
parent 91978a4de0
commit 377008bae2
1 changed files with 2 additions and 2 deletions

4
fabfile.py vendored
View File

@ -68,8 +68,8 @@ def make():
def sdist(): def sdist():
with virtualenv(VENV_DIR) as venv_local: with virtualenv(VENV_DIR) as venv_local:
with lcd(path.dirname(__file__)): with lcd(path.dirname(__file__)):
local("python -m pip install -U setuptools srsly") venv_local("python -m pip install -U setuptools srsly")
local("python setup.py sdist") venv_local("python setup.py sdist")
def wheel(): def wheel():