Skip to content

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
waylan committed Dec 8, 2017
1 parent ad4fdea commit 78c7b25
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 78c7b25

Please sign in to comment.