From 6a415a02cf0fafc34be212befb95136bc037f565 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Tue, 24 Jan 2017 06:55:23 -0600 Subject: [PATCH] Blacklist known bad version of pipenv We pinned pipenv to release v2.13.0 but in reality, we could have just blacklisted the known bad version. For future us, we now blacklist it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bcc6b74a..707839fe 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: docs init: - pip install 'pipenv===0.2.0' + pip install 'pipenv>=0.1.6,!=0.2.6,!=0.2.7,!=0.2.8' pipenv install --dev test: