From: Vincent Fu Date: Wed, 25 Mar 2020 17:48:39 +0000 (-0400) Subject: .travis.yml: remove pip line from xcode11.2 config X-Git-Tag: fio-3.20~50^2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=839e0223363e323a4acbdfaf785b03d5aa9f53ba .travis.yml: remove pip line from xcode11.2 config travis-ci changed the xcode11.2 image and 'pip' is no longer available. So only run 'pip install scipy' for the default xcode image. Signed-off-by: Vincent Fu --- diff --git a/.travis.yml b/.travis.yml index 77c31b77..6b710cc3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,8 +48,9 @@ before_install: brew install cunit; if [[ "$TRAVIS_OSX_IMAGE" == "xcode11.2" ]]; then pip3 install scipy; + else + pip install scipy; fi; - pip install scipy; fi; script: - ./configure --extra-cflags="${EXTRA_CFLAGS}" && make