diff options
| author | Benoit Pierre <benoit.pierre@gmail.com> | 2018-10-19 18:24:18 +0200 |
|---|---|---|
| committer | Benoit Pierre <benoit.pierre@gmail.com> | 2018-10-21 15:54:39 +0200 |
| commit | d6c05b4b63c337b6280496cd6a9e63b6a99ce53f (patch) | |
| tree | 0f3cd5668515d97ff60f4fb6fd095b9e3fe0362d | |
| parent | 544f4b939943c80bdaf468e72c4cbeddd6cfe585 (diff) | |
| download | python-setuptools-git-d6c05b4b63c337b6280496cd6a9e63b6a99ce53f.tar.gz | |
travis: ensure test requirements are installed and up-to-date
Particularly: update pip so PEP 518 support is available.
| -rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 627c1f63..7e61d8a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,12 +43,14 @@ jobs: cache: pip install: -# ensure we have recent pip/setuptools -- pip install --upgrade pip setuptools + +# ensure we have recent pip/setuptools/wheel +- pip install --disable-pip-version-check --upgrade pip setuptools wheel # need tox to get started -- pip install tox tox-venv +- pip install --upgrade tox tox-venv # Output the env, to verify behavior +- pip freeze --all - env # update egg_info based on setup.py in checkout |
