From f2b567b83f8e30d94813b1ad14187574e5bbac18 Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Wed, 25 Jan 2017 14:51:48 -0800 Subject: [PATCH] The python3-pip package does not exist on Ubuntu 12.04 LTS. Try to go via python3-setuptools instead. --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1910397b6c..ebaf2199f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,10 @@ rust: addons: apt: packages: - - python3-pip -install: pip3 install --user --upgrade mypy flake8 + - python3-setuptools +install: + - easy_install3 --user pip + - python3 -m pip install --user --upgrade mypy flake8 script: ./test-all.sh cache: - cargo