From ffe0c305eea6a3e9abba7a0015604352d10b6f5c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Tue, 26 Sep 2017 11:03:48 -0400 Subject: [PATCH] don't use the git version of pipenv Signed-off-by: Kenneth Reitz <me@kennethreitz.org> --- bin/steps/pipenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/pipenv b/bin/steps/pipenv index d06bcb74..ceb68c88 100644 --- a/bin/steps/pipenv +++ b/bin/steps/pipenv @@ -10,7 +10,7 @@ if [[ -f Pipfile ]]; then puts-step "Installing requirements with latest Pipenv…" # Install pipenv. - /app/.heroku/python/bin/pip install git+https://github.com/kennethreitz/pipenv.git#egg=pipenv --upgrade &> /dev/null + /app/.heroku/python/bin/pip pipenv --upgrade &> /dev/null if [[ ! -f Pipfile.lock ]]; then /app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent -- GitLab