Add Python 3.8 to travis (#371)

This commit is contained in:
Inada Naoki 2019-09-19 20:37:19 +09:00 committed by GitHub
parent c25e2a0984
commit fd3f004863
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: