From 1b0307de596934fd12768ec43669b28d24f4296e Mon Sep 17 00:00:00 2001 From: Laurence de Bruxelles Date: Tue, 19 Feb 2019 09:47:35 +0000 Subject: [PATCH] Update unpinned pip packages when running `make requirements-dev` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ef184cc2..7887c2f9 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ virtualenv: .PHONY: requirements-dev requirements-dev: virtualenv requirements-dev.txt - ${VIRTUALENV_ROOT}/bin/pip install -r requirements-dev.txt + ${VIRTUALENV_ROOT}/bin/pip install -Ur requirements-dev.txt .PHONY: test test: show-environment test-flake8 test-python