Skip to content

Commit

Permalink
Temporarily pin pip to any version <20
Browse files Browse the repository at this point in the history
There was an issue recently introduced with pip 20.0.1 that prevents
some binary wheels from being installed. This will result in failed
setup of angr-dev. Until it gets resolved, simply use a slightly older
version of pip.

More info: pypa/pip#7629
  • Loading branch information
mborgerson committed Jan 22, 2020
1 parent 5271c40 commit c2c34c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ then
workon $ANGR_VENV || error "Unable to activate the virtual environment."

# older versions of pip will fail to process the --find-links arg silently
pip3 install -U pip
pip3 install -U 'pip<20'
fi

function try_remote
Expand Down

0 comments on commit c2c34c9

Please sign in to comment.