Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
cec739ab
Commit
cec739ab
authored
Sep 11, 2017
by
Matthew Brett
Browse files
BF: fix breakage for wheel 0.30 and Python 2.6
parent
323aca41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
osx_utils.sh
osx_utils.sh
+6
-0
No files found.
osx_utils.sh
View file @
cec739ab
...
@@ -297,7 +297,13 @@ function get_macpython_environment {
...
@@ -297,7 +297,13 @@ function get_macpython_environment {
function
repair_wheelhouse
{
function
repair_wheelhouse
{
local
wheelhouse
=
$1
local
wheelhouse
=
$1
check_pip
check_pip
if
[
$(
lex_ver
$(
get_py_mm
))
-lt
$(
lex_ver 2.7
)
]
;
then
# Wheel 0.30 doesn't work for Python 2.6; see:
# https://github.com/pypa/wheel/issues/193
$PIP_CMD
install
wheel<
=
0.29
fi
$PIP_CMD
install
delocate
$PIP_CMD
install
delocate
delocate-listdeps
$wheelhouse
/
*
.whl
# lists library dependencies
delocate-listdeps
$wheelhouse
/
*
.whl
# lists library dependencies
# repair_wheelhouse can take more than 10 minutes without generating output
# repair_wheelhouse can take more than 10 minutes without generating output
# but jobs that do not generate output within 10 minutes are aborted by travis-ci.
# but jobs that do not generate output within 10 minutes are aborted by travis-ci.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment