From 5779a5b8a80e5df1b4745a2508b122c4986fd0c7 Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Fri, 14 Dec 2018 18:08:32 +0100 Subject: [PATCH] Fix MbedOS build (#2644) Since recently, the newly released mbed-host-tests 1.4.4 gets installed during the python requirement installation step. That package requires pyocd>=0.14.0, which cannot be satisfied for whatever reason. This quick fix pins mbed-host-tests to version 1.4.2, which does not have unsatisfiable requirements. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- targets/mbedos5/Makefile.travis | 1 + 1 file changed, 1 insertion(+) diff --git a/targets/mbedos5/Makefile.travis b/targets/mbedos5/Makefile.travis index a0ef7d28c..ed77d2658 100644 --- a/targets/mbedos5/Makefile.travis +++ b/targets/mbedos5/Makefile.travis @@ -25,6 +25,7 @@ all: install: pip install --user mbed-cli cd targets/mbedos5 && mbed deploy + pip install --user mbed-host-tests==1.4.2 # FIXME: mbed-host-tests 1.4.4 requires pyocd>=0.14.0, which cannot be satisfied for whatever reason pip install --user -r targets/mbedos5/mbed-os/requirements.txt