Skip to content

Commit

Permalink
bdist_wheel added as universal
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Jul 21, 2021
1 parent eedf7c7 commit c6b7423
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,20 @@ bdist: all
$(PYTHON) setup.py -q bdist
@rm -rf ${NAME}.egg-info

bdist_world: all
make clean
make test
$(PYTHON) setup.py -q bdist_world
@rm -rf ${NAME}.egg-info

upload: clean all tag upload-github upload-pypi

upload-github:
git push
git push origin --tags

upload-pypi:
$(PYTHON) setup.py -q sdist upload --sign --identity="$(EMAIL)"
$(PYTHON) setup.py -q sdist bdist_wheel upload --sign --identity="$(EMAIL)"

showtag: sdist
@ 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"
Expand Down

0 comments on commit c6b7423

Please sign in to comment.