Build: remove pip packages from the install step;

Pip packages were installed because of the meta build in Python, but
they're now unused, so it's a waste of build time and cache space.
This commit is contained in:
Benjamin Bouvier
2019-08-22 12:42:24 +02:00
parent 173cfb02e6
commit 69f90b390e

View File

@@ -21,12 +21,6 @@ matrix:
fast_finish: true fast_finish: true
dist: xenial dist: xenial
sudo: false sudo: false
addons:
apt:
packages:
- python3-pip
install:
- pip3 install --verbose --user --upgrade mypy flake8
before_script: before_script:
# If an old version of rustfmt from cargo is already installed, uninstall # If an old version of rustfmt from cargo is already installed, uninstall
# it, since it can prevent the installation of the new version from rustup. # it, since it can prevent the installation of the new version from rustup.
@@ -47,5 +41,3 @@ before_script:
script: ./test-all.sh script: ./test-all.sh
cache: cache:
cargo: true cargo: true
directories:
- $HOME/.cache/pip