From 1aa2cb19210c549e99085b57adf7cda76da1ab21 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Thu, 1 Sep 2016 07:33:10 -0700 Subject: [PATCH] Remove zip from sdist build per PEP 527 --- tools/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tasks.py b/tools/tasks.py index 49ca2db2..fcd99979 100644 --- a/tools/tasks.py +++ b/tools/tasks.py @@ -172,7 +172,7 @@ def build_sdist(py): Returns the path to the tarball """ with cd(repo_root): - cmd = [py, 'setup.py', 'sdist', '--formats=zip,gztar'] + cmd = [py, 'setup.py', 'sdist', '--formats=gztar'] run(cmd) return glob.glob(pjoin(repo_root, 'dist', '*.tar.gz'))[0]