Skip to content

Commit 9a33dcf

Browse files
committed
test
1 parent 705d1f0 commit 9a33dcf

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ cache:
2020
# `cache: ccache: true` has no effect if `language:` is not `c` or `cpp`
2121
- $HOME/.ccache
2222

23-
language: python
24-
2523
# Add more cache stages (s2 etc) and corresponding OSX jobs like s1
2624
# if brew builds start to take longer than one Travis time limit
2725
stages:
@@ -32,7 +30,7 @@ jobs:
3230
fast_finish: true
3331
# Travis exclude is buggy, this seems to be the only way to disable default build
3432
exclude:
35-
- language: python
33+
- language: ruby
3634
include:
3735
- os: osx
3836
env:

travis_config.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function bdist_wheel_cmd {
1414
# copied from multibuild's common_utils.sh
1515
# add osx deployment target so it doesnt default to 10.6
1616
local abs_wheelhouse=$1
17-
pip wheel . --wheel-dir="$PWD/dist" --verbose $BDIST_PARAMS
17+
pip wheel --wheel-dir="$PWD/dist" . --verbose $BDIST_PARAMS
1818
cp dist/*.whl $abs_wheelhouse
1919
if [ -n "$USE_CCACHE" -a -z "$BREW_BOOTSTRAP_MODE" ]; then ccache -s; fi
2020
}
@@ -110,6 +110,7 @@ function pre_build {
110110
brew_install_and_cache_within_time_limit ffmpeg_opencv || { [ $? -gt 1 ] && return 2 || return 0; }
111111
else
112112
brew unlink python@2
113+
brew update
113114
brew install ffmpeg_opencv
114115
fi
115116

0 commit comments

Comments
 (0)