Skip to content

Commit 78c7b25

Browse files
committed
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.
1 parent ad4fdea commit 78c7b25

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

makefile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,14 @@ install:
2020

2121
.PHONY : deploy
2222
deploy:
23-
python setup.py sdist --manifest-only
24-
python setup.py sdist --formats zip,gztar upload
25-
mkdocs gh-deploy -r pages -b master
23+
python setup.py sdist --formats gztar upload
2624

2725
.PHONY : build
2826
build:
29-
python setup.py sdist --manifest-only
30-
python setup.py sdist --formats zip,gztar
27+
python setup.py sdist --formats gztar
3128

3229
.PHONY : build-win
3330
build-win:
34-
python setup.py sdist --manifest-only
3531
python setup.py bdist_wininst
3632

3733
.PHONY : docs

0 commit comments

Comments
 (0)