diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-28 17:24:31 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-28 17:37:45 +0300 |
commit | f578947ae3fee5610c5bc1123baf878b92eaa248 (patch) | |
tree | ea93d705fe184bce93317d6c673ca1f1e9fdb6ae | |
parent | a3cd349eafb2f612379f10c45ab1ad4175e322e2 (diff) | |
download | micropython-f578947ae3fee5610c5bc1123baf878b92eaa248.tar.gz micropython-f578947ae3fee5610c5bc1123baf878b92eaa248.zip |
.travis.yml: Pin cpp-coveralls at 0.3.12.
Next version, 0.4.0 appears to depend on newer version of urllib3 and
conflicts with version installed in Travis.
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9915cdd009..14d5df0a45 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,8 @@ before_script: # For teensy build - sudo apt-get install realpath # For coverage testing - - sudo pip install cpp-coveralls + # cpp-coveralls 0.4 conflicts with urllib3 preinstalled in Travis VM + - sudo pip install cpp-coveralls==0.3.12 - gcc --version - arm-none-eabi-gcc --version - python3 --version |