From 685e971c9e7b65af862d47b40e34199317086aad Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Wed, 6 Sep 2017 17:46:19 -0500 Subject: [PATCH] Fix .travis.yml requirements install Recently, how pip installs dependencies in travis has changed. Now, installing dependecies with sudo prevents import in user space. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d7a6222b61..a470ac70f6 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 - - sudo pip install -r mbed-os/requirements.txt + - pip install -r mbed-os/requirements.txt