diff options
| author | Inada Naoki <songofacandy@gmail.com> | 2019-09-19 20:37:19 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-19 20:37:19 +0900 |
| commit | fd3f0048633423651772526875611f125dda68f6 (patch) | |
| tree | f23478a9a070a7f9f3bf4cc788b400e0739c80ee | |
| parent | c25e2a0984ec5d092fee38eeb4b74676ada9aef4 (diff) | |
| download | msgpack-python-fd3f0048633423651772526875611f125dda68f6.tar.gz | |
Add Python 3.8 to travis (#371)
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 43c5259..c80bb37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,16 +3,20 @@ language: python cache: pip python: + # Available Python (PyPy) can be listed by: + # + # $ aws s3 ls s3://travis-python-archives/binaries/ubuntu/16.04/x86_64/ - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - - "nightly" + - "3.8-dev" matrix: include: - - sudo: required + - name: 32bit build + sudo: required language: python services: - docker @@ -25,12 +29,14 @@ matrix: - docker pull $DOCKER_IMAGE script: - docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh - - python: "pypy2.7-5.10.0" + - name: "pypy2.7" + python: "pypy2.7-7.1.1" install: - pip install -e . script: - py.test -v test - - python: "pypy3.5" + - name: "pypy3" + python: "pypy3.6-7.1.1" install: - pip install -e . script: |
