Skip to content

Commit

Permalink
Pin pip to 18.x (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe authored Apr 24, 2019
1 parent 1bd19e0 commit 9c115d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ init:
# Pin pipenv to 2018.10.13 because further releases are incompatible with
# PyPy3. The issue was fixed in https://github.com/pypa/pipenv/pull/3322
# but no new version has been released yet.
pip install --upgrade pipenv==2018.10.13
# Also pin pip to 18.x because with more recent versions, we'd need to
# pass `--no-use-pep517`, which pipenv doesn't let us do. Cf.
# https://github.com/pypa/pipenv/issues/3651
pip install --upgrade pip~=18.0 pipenv==2018.10.13
pipenv install --dev --skip-lock

test:
Expand Down

0 comments on commit 9c115d6

Please sign in to comment.