Skip to content

Commit

Permalink
Disable binary build until py2exe build works on Python 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
wummel committed Jul 19, 2015
1 parent 2369470 commit fdbc0f2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ dist:
[ -d dist ] || mkdir dist
$(PYTHON) setup.py sdist --formats=tar
gzip --best dist/$(APPNAME)-$(VERSION).tar
[ ! -f ../$(ARCHIVE_WIN32) ] || cp ../$(ARCHIVE_WIN32) dist
# [ ! -f ../$(ARCHIVE_WIN32) ] || cp ../$(ARCHIVE_WIN32) dist

sign:
[ -f dist/$(ARCHIVE_SOURCE).asc ] || gpg --detach-sign --armor dist/$(ARCHIVE_SOURCE)
[ -f dist/$(ARCHIVE_WIN32).asc ] || gpg --detach-sign --armor dist/$(ARCHIVE_WIN32)
# [ -f dist/$(ARCHIVE_WIN32).asc ] || gpg --detach-sign --armor dist/$(ARCHIVE_WIN32)

upload: upload_source upload_binary
upload: upload_source #upload_binary

upload_source:
twine upload dist/$(ARCHIVE_SOURCE) dist/$(ARCHIVE_SOURCE).asc
Expand Down Expand Up @@ -76,10 +76,10 @@ releasecheck: test check
@if egrep -i "xx\.|xxxx|\.xx" doc/changelog.txt > /dev/null; then \
echo "Could not release: edit doc/changelog.txt release date"; false; \
fi
@if [ ! -f ../$(ARCHIVE_WIN32) ]; then \
echo "Missing WIN32 distribution archive at ../$(ARCHIVE_WIN32)"; \
false; \
fi
# @if [ ! -f ../$(ARCHIVE_WIN32) ]; then \
# echo "Missing WIN32 distribution archive at ../$(ARCHIVE_WIN32)"; \
# false; \
# fi
$(PYTHON) setup.py check --restructuredtext

check:
Expand Down

0 comments on commit fdbc0f2

Please sign in to comment.