From 105a91975b55d28ab33718d9292bda6d28853acd Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 27 Sep 2019 15:52:26 +0200 Subject: [PATCH] Fix sdist command --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 0e69551c3..2ab74ce24 100644 --- a/fabfile.py +++ b/fabfile.py @@ -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():