We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd19e0 commit 9c115d6Copy full SHA for 9c115d6
Makefile
@@ -2,7 +2,10 @@ init:
2
# Pin pipenv to 2018.10.13 because further releases are incompatible with
3
# PyPy3. The issue was fixed in https://github.com/pypa/pipenv/pull/3322
4
# but no new version has been released yet.
5
- pip install --upgrade pipenv==2018.10.13
+ # 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
9
pipenv install --dev --skip-lock
10
11
test:
0 commit comments