Fix sdist command

This commit is contained in:
Matthew Honnibal 2019-09-27 15:52:26 +02:00
parent 3624153591
commit 105a91975b

2
fabfile.py vendored
View File

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