Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin pip to 18.x #559

Merged
merged 1 commit into from
Apr 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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