From b4503f6cd45502a01e5c84319d68231ef8d4f79d Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Sat, 6 Jun 2015 20:27:09 -0400 Subject: [PATCH] Make sure we upload a tar.gz too, Part 2 [ci skip] Do a better job: - Add gztar to --format instead of calling setup.py twice - Create same sdists across all targets not just upload --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a729e4088..27ec990b7 100644 --- a/Makefile +++ b/Makefile @@ -67,9 +67,8 @@ docserver: # password: # repository = http://test.pythonpackages.com sdisttest: - python setup.py sdist --format=zip upload -r test + python setup.py sdist --format=gztar,zip upload -r test sdistup: - python setup.py sdist --format=zip upload - python setup.py sdist upload + python setup.py sdist --format=gztar,zip upload sdist: - python setup.py sdist --format=zip + python setup.py sdist --format=gztar,zip