Browse Source

Pull in a python3 Ubuntu package for Travis CI.

Then use pip3 to install dependencies.
pull/3/head
Jakob Stoklund Olesen 8 years ago
parent
commit
27e735b028
  1. 7
      .travis.yml

7
.travis.yml

@ -3,8 +3,11 @@ rust:
- stable
- beta
- nightly
python: "3.6"
install: pip install --user --upgrade mypy flake8
addons:
apt:
packages:
- python3-pip
install: pip3 install --user --upgrade mypy flake8
script: ./test-all.sh
cache:
- cargo

Loading…
Cancel
Save