Skip to content

Commit

Permalink
make python 3 default for kitting
Browse files Browse the repository at this point in the history
  • Loading branch information
rthalley committed Oct 8, 2016
1 parent 28c99cc commit 9cd285f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# $Id: Makefile,v 1.16 2004/03/19 00:17:27 halley Exp $

PYTHON=python
PYTHON3=python3

all:
${PYTHON} ./setup.py build
Expand Down Expand Up @@ -48,9 +49,7 @@ docclean:
rm -rf html.tar.gz html.zip html

kits:
${PYTHON} ./setup.py sdist --formats=gztar,zip
# ${PYTHON} ./setup.py bdist_wininst
# ${PYTHON} ./setup.py bdist_rpm
${PYTHON3} ./setup.py sdist --formats=gztar,zip bdist_wheel

tags:
find . -name '*.py' -print | etags -
Expand All @@ -64,7 +63,7 @@ test2:
cd tests; make PYTHON=python test

test3:
cd tests; make PYTHON=python3 test
cd tests; make PYTHON=${PYTHON3} test

lint:
pylint dns tests examples/*.py

0 comments on commit 9cd285f

Please sign in to comment.