Skip to content

Commit 899b9c6

Browse files
committed
Update CI Pythons.
- Add Python 3.8. - Unpin pypy2.7 and pypy3.
1 parent 7385912 commit 899b9c6

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.travis.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
os: linux
2-
dist: trusty
2+
dist: xenial
33
language: python
44
python:
5-
- 2.6
65
- 2.7
7-
- 3.2
8-
- 3.3
96
- 3.4
107
- 3.5
118
- 3.6
12-
- &mainstream_python 3.6
13-
- pypy2.7-5.8.0
14-
- pypy3.5-5.8.0
9+
- 3.7
10+
- &mainstream_python 3.8
11+
- nightly
12+
- pypy
13+
- pypy3
1514
install:
1615
- pip install --upgrade --force-reinstall "setuptools; python_version != '3.2' and python_version != '3.3'" "setuptools < 30; python_version == '3.2'" "setuptools < 40; python_version == '3.3'"
1716
- pip uninstall --yes six || true
@@ -27,10 +26,12 @@ script:
2726
jobs:
2827
fast_finish: true
2928
include:
30-
- python: 3.7
31-
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
32-
- python: nightly
33-
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
29+
- python: 2.6
30+
dist: trusty
31+
- python: 3.2
32+
dist: trusty
33+
- python: 3.3
34+
dist: trusty
3435
- stage: upload new version of python package to PYPI (only for tagged commits)
3536
python: *mainstream_python
3637
install: skip

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py26,py27,py31,py32,py33,py34,pypy,flake8
2+
envlist=py26,py27,py32,py33,py34,py35,py36,py37,py38,pypy,flake8
33

44
[testenv]
55
deps= pytest

0 commit comments

Comments
 (0)