From f32cad9c5c46b44847e99ea1d9b97d8cb571e14b Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Wed, 27 Sep 2017 11:33:06 -0500 Subject: [PATCH] Fix .travis.yml requirements install Needs --user flag for reasons, see https://github.com/ARMmbed/mbed-os/pull/5061 superseeds https://github.com/ARMmbed/sd-driver/pull/60 cc @deepikabhavnani --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a470ac70f6..0ad9c5cfd3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,4 +21,4 @@ install: # Get dependencies - git clone https://github.com/armmbed/mbed-os.git # Install python dependencies - - pip install -r mbed-os/requirements.txt + - pip install --user -r mbed-os/requirements.txt