Skip to content

Commit d745782

Browse files
committed
Fixed makefile indentation and specify Python to use
1 parent 72a2248 commit d745782

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
PYTHON=python3
2+
13
install:
2-
python3 -m pip install .
4+
${PYTHON} -m pip install .
35

46
test:
5-
python3 setup.py test
7+
${PYTHON} setup.py test
68

79
build:
8-
python3 setup.py build
10+
${PYTHON} setup.py build
911

1012
publish:
11-
python3 setup.py publish
13+
${PYTHON} setup.py publish

0 commit comments

Comments
 (0)