Skip to content

Commit 19b2ee9

Browse files
committed
Update pip as part of setting virtual environment.
1 parent d308269 commit 19b2ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ install:
5252

5353
setup-venv: ## setup a development virutalenv in current directory
5454
if [ ! -d $(VENV) ]; then virtualenv $(VENV); exit; fi;
55-
$(IN_VENV) pip install -r requirements.txt && pip install -r dev-requirements.txt
55+
$(IN_VENV) pip install --upgrade pip && pip install -r requirements.txt && pip install -r dev-requirements.txt
5656

5757
setup-git-hook-lint: ## setup precommit hook for linting project
5858
cp $(BUILD_SCRIPTS_DIR)/pre-commit-lint .git/hooks/pre-commit

0 commit comments

Comments
 (0)