We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d308269 commit 19b2ee9Copy full SHA for 19b2ee9
Makefile
@@ -52,7 +52,7 @@ install:
52
53
setup-venv: ## setup a development virutalenv in current directory
54
if [ ! -d $(VENV) ]; then virtualenv $(VENV); exit; fi;
55
- $(IN_VENV) pip install -r requirements.txt && pip install -r dev-requirements.txt
+ $(IN_VENV) pip install --upgrade pip && pip install -r requirements.txt && pip install -r dev-requirements.txt
56
57
setup-git-hook-lint: ## setup precommit hook for linting project
58
cp $(BUILD_SCRIPTS_DIR)/pre-commit-lint .git/hooks/pre-commit
0 commit comments