diff options
author | Pradyun S. Gedam <pradyunsg@users.noreply.github.com> | 2017-08-10 01:42:32 +0530 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2017-08-09 16:12:32 -0400 |
commit | 9986c0f1a7974b2c0c8581ab1ab5231539dc786e (patch) | |
tree | bd4232cd29f1f4caab4da276d1e6710eff2dc5e2 /.travis.yml | |
parent | 841f5dfb5cd7e0eb5a1bff8332f8fb648fe678ef (diff) | |
download | pip-9986c0f1a7974b2c0c8581ab1ab5231539dc786e.tar.gz |
Travis: Upgrade to Trusty and MyPy 5.8.0 (#4652)
* Upgrade to Trusty on Travis
Before Travis pushes us forcefully, it makes sense to ensure that the flip won't break our builds.
* Show failures because travis misbehaves occasionally
* Try out newer PyPy versions on Travis
* Use pypy and pypy3
:tada:
* Revert "Show failures because travis misbehaves occasionally"
This reverts commit 7434fd6103443e0e878675709711e971d8f0c609.
* Allow PyPy3 to fail
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f6af4c85a..2450a6991 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python sudo: false +dist: trusty matrix: include: @@ -21,13 +22,16 @@ matrix: - env: TOXENV=py37 python: nightly - env: TOXENV=pypy - python: pypy-5.4 + python: pypy + - env: TOXENV=pypy3 + python: pypy3 - env: "TOXENV=py27 VENDOR=no WHEELS=yes" python: 2.7 - env: "TOXENV=py36 VENDOR=no WHEELS=yes" python: 3.6 allow_failures: - python: nightly + - python: pypy3 install: travis_retry .travis/install.sh script: .travis/run.sh |