From 7cbdcaddf32f460f71e2c9370d5430ff91461e6a Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 21 Feb 2019 12:08:41 +0100 Subject: [PATCH] Ensure new setuptools before building sdist --- fabfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fabfile.py b/fabfile.py index 268ebb6d7..0e69551c3 100644 --- a/fabfile.py +++ b/fabfile.py @@ -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():