Skip to content

Commit 9c115d6

Browse files
authored
Pin pip to 18.x (#559)
1 parent 1bd19e0 commit 9c115d6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ init:
22
# Pin pipenv to 2018.10.13 because further releases are incompatible with
33
# PyPy3. The issue was fixed in https://github.com/pypa/pipenv/pull/3322
44
# but no new version has been released yet.
5-
pip install --upgrade pipenv==2018.10.13
5+
# Also pin pip to 18.x because with more recent versions, we'd need to
6+
# pass `--no-use-pep517`, which pipenv doesn't let us do. Cf.
7+
# https://github.com/pypa/pipenv/issues/3651
8+
pip install --upgrade pip~=18.0 pipenv==2018.10.13
69
pipenv install --dev --skip-lock
710

811
test:

0 commit comments

Comments
 (0)