From 11be1b17a0f80c52be2869a946b9f6def87c91ac Mon Sep 17 00:00:00 2001
From: Aaron LI <aaronly.me@outlook.com>
Date: Sat, 15 Oct 2016 09:29:25 +0800
Subject: Makefile: remove argument "--upgrade" from pip3

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'Makefile')

diff --git a/Makefile b/Makefile
index 02c7b49..1a5c821 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ default:
 venv: ${VENV}/bin/activate
 ${VENV}/bin/activate: requirements.txt
 	test -d ./${VENV} || virtualenv --python=python3 ${VENV}
-	./${VENV}/bin/pip3 install --upgrade -r requirements.txt
+	./${VENV}/bin/pip3 install -r requirements.txt
 	touch ${VENV}/bin/activate
 
 # Install this package to the virtualenv
-- 
cgit v1.2.2