Skip to content

Commit 81c373a

Browse files
committed
Update Makefile, use python3 explicitly
1 parent 6277f71 commit 81c373a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ install:
2626
@echo "Installing dependencies"
2727
@pip install $(DEPENDENCIES)
2828
@echo "Installing package"
29-
@python setup.py install
29+
@python3 setup.py install
3030
@echo ""
3131
@echo "Done."
3232
@echo ""
@@ -35,15 +35,15 @@ package:
3535
@echo "--------------------------------------------------------------------"
3636
@echo "Building package"
3737
@mkdir -p $(DIST_DIR)/
38-
@python setup.py bdist_wheel --dist-dir=$(DIST_DIR)
38+
@python3 setup.py bdist_wheel --dist-dir=$(DIST_DIR)
3939
@echo ""
4040
@echo "Done."
4141
@echo ""
4242

4343
clean:
4444
@echo ""
4545
@echo "--------------------------------------------------------------------"
46-
@python setup.py clean
46+
@python3 setup.py clean
4747
@echo "Removing *.pyc and __pycache__/ files"
4848
@find . -type f -name "*.pyc" | xargs rm -vrf
4949
@find . -type d -name "__pycache__" | xargs rm -vrf
@@ -60,7 +60,7 @@ develop:
6060
@echo ""
6161
@echo "--------------------------------------------------------------------"
6262
@echo "Setting up development environment"
63-
@python setup.py develop --no-deps -q
63+
@python3 setup.py develop --no-deps -q
6464
@echo ""
6565
@echo "Done."
6666
@echo ""
@@ -69,7 +69,7 @@ undevelop:
6969
@echo ""
7070
@echo "--------------------------------------------------------------------"
7171
@echo "Removing development environment"
72-
@python setup.py develop -q --no-deps --uninstall
72+
@python3 setup.py develop -q --no-deps --uninstall
7373
@echo ""
7474
@echo "Done."
7575
@echo ""

0 commit comments

Comments
 (0)