Commit edf5b691 authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #26 from ariddell/master

MRG: echo status in repair_wheelhouse, avoid 10m limit
parents acb5b66d f7a51491
...@@ -268,6 +268,10 @@ function repair_wheelhouse { ...@@ -268,6 +268,10 @@ function repair_wheelhouse {
local wheelhouse=$1 local wheelhouse=$1
pip install delocate pip 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
# but jobs that do not generate output within 10 minutes are aborted by travis-ci.
# Echoing something here solves the problem.
echo in repair_wheelhouse, executing delocate-wheel
delocate-wheel $wheelhouse/*.whl # copies library dependencies into wheel delocate-wheel $wheelhouse/*.whl # copies library dependencies into wheel
# Add platform tags to label wheels as compatible with OSX 10.9 and # Add platform tags to label wheels as compatible with OSX 10.9 and
# 10.10. The wheels will be built against Python.org Python, and so will # 10.10. The wheels will be built against Python.org Python, and so will
......
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