xcode8.3 is a new default image for OS X on Travis-CI, but
it does not have 'pip':

    pip install --user six
    ./.travis/osx-prepare.sh: line 3: pip: command not found

'pip2' or 'pip3' should be used explicitly instead:

    https://github.com/travis-ci/travis-ci/issues/8829

Signed-off-by: Ilya Maximets <[email protected]>
---
 .travis/osx-prepare.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis/osx-prepare.sh b/.travis/osx-prepare.sh
index 1f144fb..4725fd8 100755
--- a/.travis/osx-prepare.sh
+++ b/.travis/osx-prepare.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 set -ev
-pip install --user six
-pip install --user --upgrade docutils
+pip2 install --user six
+pip2 install --user --upgrade docutils
 
 brew update || true
 brew uninstall libtool && brew install libtool || true
-- 
2.7.4

_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to