Browse Source

The python3-pip package does not exist on Ubuntu 12.04 LTS.

Try to go via python3-setuptools instead.
pull/3/head
Jakob Stoklund Olesen 8 years ago
parent
commit
f2b567b83f
  1. 6
      .travis.yml

6
.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

Loading…
Cancel
Save