Skip to content

Commit 4dec7e3

Browse files
committed
Switch makefile to use Python 3 instead of 2
1 parent dc4c5d3 commit 4dec7e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ default:
2929

3030
install:
3131
@test -d "$(VIRTUAL_ENV)" || mkdir -p "$(VIRTUAL_ENV)"
32-
@test -x "$(VIRTUAL_ENV)/bin/python" || virtualenv --quiet "$(VIRTUAL_ENV)"
32+
@test -x "$(VIRTUAL_ENV)/bin/python" || virtualenv --python=python3 --quiet "$(VIRTUAL_ENV)"
3333
@test -x "$(VIRTUAL_ENV)/bin/pip" || easy_install pip
3434
@pip install --quiet --requirement=requirements.txt
3535
@pip uninstall --yes $(PACKAGE_NAME) &>/dev/null || true

0 commit comments

Comments
 (0)