From 8e6066741349f4e9599d6178c432db9c82cfcdd2 Mon Sep 17 00:00:00 2001 From: Simon Giesecke Date: Fri, 14 May 2021 14:33:52 +0000 Subject: [PATCH] Problem: cpp-coveralls can no longer be installed using Python2 pip. Solution: Use pip3 instead of pip to install coveralls. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a7538ab..ae003a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,14 +25,16 @@ matrix: # Coverage, GCC 7, draft enabled, latest libzmq (default) - os: linux + python: 3.6 before_install: - - pip install --user cpp-coveralls + - pip3 install --user cpp-coveralls addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-7 + - python3-pip env: - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" ENABLE_DRAFTS=ON COVERAGE=ON after_success: