Skip to content

Commit

Permalink
Set default virtualenv as python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgilmerproj committed May 15, 2019
1 parent 85db6fb commit a9d90cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ help: ## Print the help documentation
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

$(VENV_ACTIVATE): requirements.txt requirements-dev.txt
test -f $@ || virtualenv --python=python2.7 $(VENV_DIR)
test -f $@ || virtualenv --python=python3.7 $(VENV_DIR)
$(WITH_VENV) pip install --no-deps -r requirements.txt
$(WITH_VENV) pip install --no-deps -r requirements-dev.txt
touch $@
Expand Down

0 comments on commit a9d90cb

Please sign in to comment.