From: Ben Darnell Date: Fri, 8 Dec 2017 17:32:51 +0000 (-0500) Subject: travis.yml: Upgrade pypy3 X-Git-Tag: v5.0.0~35^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12a4627b3569d69c8da7b86736a68b34caa1e8a1;p=thirdparty%2Ftornado.git travis.yml: Upgrade pypy3 This may fix weird test failures as seen in #2193 --- diff --git a/.travis.yml b/.travis.yml index fe1cd2a03..cd2021bd6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,14 +8,16 @@ matrix: fast_finish: true language: python +# For a list of available versions, run +# aws s3 ls s3://travis-python-archives/binaries/ubuntu/14.04/x86_64/ python: - 2.7 - - pypy-5.7.1 + - pypy2.7-5.8.0 - 3.4 - 3.5 - 3.6 - nightly - - pypy3.5-5.7.1-beta + - pypy3.5-5.8.0 install: - if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then travis_retry pip install futures mock monotonic; fi