Commit 3fe24f4a authored by Matthew Brett's avatar Matthew Brett
Browse files

Fix (maybe) command for downgrading wheel package

parent cec739ab
...@@ -300,7 +300,7 @@ function repair_wheelhouse { ...@@ -300,7 +300,7 @@ function repair_wheelhouse {
if [ $(lex_ver $(get_py_mm)) -lt $(lex_ver 2.7) ]; then if [ $(lex_ver $(get_py_mm)) -lt $(lex_ver 2.7) ]; then
# Wheel 0.30 doesn't work for Python 2.6; see: # Wheel 0.30 doesn't work for Python 2.6; see:
# https://github.com/pypa/wheel/issues/193 # https://github.com/pypa/wheel/issues/193
$PIP_CMD install wheel<=0.29 $PIP_CMD install "wheel<=0.29"
fi fi
$PIP_CMD install delocate $PIP_CMD install delocate
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment