Skip to content

Commit

Permalink
Update CI Pythons.
Browse files Browse the repository at this point in the history
- Add Python 3.8.
- Unpin pypy2.7 and pypy3.
  • Loading branch information
benjaminp committed Nov 5, 2019
1 parent 7385912 commit 899b9c6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
23 changes: 12 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
os: linux
dist: trusty
dist: xenial
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
- &mainstream_python 3.6
- pypy2.7-5.8.0
- pypy3.5-5.8.0
- 3.7
- &mainstream_python 3.8
- nightly
- pypy
- pypy3
install:
- 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'"
- pip uninstall --yes six || true
Expand All @@ -27,10 +26,12 @@ script:
jobs:
fast_finish: true
include:
- python: 3.7
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
- python: nightly
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
- python: 2.6
dist: trusty
- python: 3.2
dist: trusty
- python: 3.3
dist: trusty
- stage: upload new version of python package to PYPI (only for tagged commits)
python: *mainstream_python
install: skip
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py26,py27,py31,py32,py33,py34,pypy,flake8
envlist=py26,py27,py32,py33,py34,py35,py36,py37,py38,pypy,flake8

[testenv]
deps= pytest
Expand Down

0 comments on commit 899b9c6

Please sign in to comment.