From 949b5fe998f50efd3a52509abbe00840d0b3e512 Mon Sep 17 00:00:00 2001 From: Paolo Melchiorre Date: Wed, 23 Jan 2019 17:49:24 +0100 Subject: [PATCH] Fixed #45 make pip broken --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 665a81b..180df2d 100644 --- a/Makefile +++ b/Makefile @@ -40,14 +40,14 @@ test: dev: ( \ - pip install -U pip pip-tools; \ + pip install -U pip==18.1 pip-tools; \ pip-sync requirements/dev.txt; \ ) # to pass optional parameters use as: make pip p='-P requests' pip: ( \ - pip install -U pip pip-tools; \ + pip install -U pip==18.1 pip-tools; \ pip-compile $(p) --output-file requirements/common.txt requirements/common.ini; \ pip-compile $(p) --output-file requirements/dev.txt requirements/dev.ini; \ pip-compile $(p) --output-file requirements/prod.txt requirements/prod.ini; \