Remove zip from sdist build per PEP 527

This commit is contained in:
Carol Willing
2016-09-01 07:33:10 -07:00
parent bac311677f
commit 1aa2cb1921

View File

@@ -172,7 +172,7 @@ def build_sdist(py):
Returns the path to the tarball Returns the path to the tarball
""" """
with cd(repo_root): with cd(repo_root):
cmd = [py, 'setup.py', 'sdist', '--formats=zip,gztar'] cmd = [py, 'setup.py', 'sdist', '--formats=gztar']
run(cmd) run(cmd)
return glob.glob(pjoin(repo_root, 'dist', '*.tar.gz'))[0] return glob.glob(pjoin(repo_root, 'dist', '*.tar.gz'))[0]