Skip to content

Commit fd3f004

Browse files
authored
Add Python 3.8 to travis (#371)
1 parent c25e2a0 commit fd3f004

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,20 @@ language: python
33
cache: pip
44

55
python:
6+
# Available Python (PyPy) can be listed by:
7+
#
8+
# $ aws s3 ls s3://travis-python-archives/binaries/ubuntu/16.04/x86_64/
69
- "2.7"
710
- "3.4"
811
- "3.5"
912
- "3.6"
1013
- "3.7"
11-
- "nightly"
14+
- "3.8-dev"
1215

1316
matrix:
1417
include:
15-
- sudo: required
18+
- name: 32bit build
19+
sudo: required
1620
language: python
1721
services:
1822
- docker
@@ -25,12 +29,14 @@ matrix:
2529
- docker pull $DOCKER_IMAGE
2630
script:
2731
- docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
28-
- python: "pypy2.7-5.10.0"
32+
- name: "pypy2.7"
33+
python: "pypy2.7-7.1.1"
2934
install:
3035
- pip install -e .
3136
script:
3237
- py.test -v test
33-
- python: "pypy3.5"
38+
- name: "pypy3"
39+
python: "pypy3.6-7.1.1"
3440
install:
3541
- pip install -e .
3642
script:

0 commit comments

Comments
 (0)