Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit c6b7423

Browse files
committed
bdist_wheel added as universal
1 parent eedf7c7 commit c6b7423

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,20 @@ bdist: all
5050
$(PYTHON) setup.py -q bdist
5151
@rm -rf ${NAME}.egg-info
5252

53+
bdist_world: all
54+
make clean
55+
make test
56+
$(PYTHON) setup.py -q bdist_world
57+
@rm -rf ${NAME}.egg-info
58+
5359
upload: clean all tag upload-github upload-pypi
5460

5561
upload-github:
5662
git push
5763
git push origin --tags
5864

5965
upload-pypi:
60-
$(PYTHON) setup.py -q sdist upload --sign --identity="$(EMAIL)"
66+
$(PYTHON) setup.py -q sdist bdist_wheel upload --sign --identity="$(EMAIL)"
6167

6268
showtag: sdist
6369
@ v=`ls -r dist | head -1 | sed -e 's/cloudflare-\([0-9.]*\)\.tar.*/\1/'` ; echo "\tDIST VERSION =" $$v ; (git tag | fgrep -q "$$v") && echo "\tGIT TAG EXISTS"

0 commit comments

Comments
 (0)