From 93d2809ab60a48195aecf9bb2dcb68a19e1a679d Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Thu, 7 Dec 2017 20:07:20 -0500 Subject: [PATCH] Update makefile The sdist command now builds the MANIFEST automatically. No need to do it manually. Also, PyPI now only accepts one sdist file per release, so let's not try to upload two. Also, the docs deploy command does not work right so it's removed. --- makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/makefile b/makefile index aeb81aab5..ef1349e41 100644 --- a/makefile +++ b/makefile @@ -20,18 +20,14 @@ install: .PHONY : deploy deploy: - python setup.py sdist --manifest-only - python setup.py sdist --formats zip,gztar upload - mkdocs gh-deploy -r pages -b master + python setup.py sdist --formats gztar upload .PHONY : build build: - python setup.py sdist --manifest-only - python setup.py sdist --formats zip,gztar + python setup.py sdist --formats gztar .PHONY : build-win build-win: - python setup.py sdist --manifest-only python setup.py bdist_wininst .PHONY : docs