aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2017-12-07 20:07:20 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2017-12-07 20:19:14 -0500
commit78c7b25454dc949f0a9037097f1f685bb6fe615b (patch)
treeaf4bdb789dc530a27344ff5d1fbf187323ded5fc
parentad4fdeadcaa3f63b3709932015ec65a95e750306 (diff)
downloadmarkdown-78c7b25454dc949f0a9037097f1f685bb6fe615b.tar.gz
markdown-78c7b25454dc949f0a9037097f1f685bb6fe615b.tar.bz2
markdown-78c7b25454dc949f0a9037097f1f685bb6fe615b.zip
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.
-rw-r--r--makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/makefile b/makefile
index aeb81aa..ef1349e 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