Ensure new setuptools before building sdist

This commit is contained in:
Matthew Honnibal 2019-02-21 12:08:41 +01:00
parent f75be6e7be
commit 7cbdcaddf3

1
fabfile.py vendored
View File

@ -59,6 +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 setup.py sdist')
def wheel():