diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-11-20 11:54:44 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-11-20 11:54:44 -0500 |
| commit | 4c6f629bb9c63c2208c3b03bb1e15a0d4e4731db (patch) | |
| tree | 7f7ab8aac8fae3a94135eda5dd6c298d0969b4ff | |
| parent | d1cef0c5aa0ca473d4b5fef6b11e5508a37663a2 (diff) | |
| download | python-setuptools-git-4c6f629bb9c63c2208c3b03bb1e15a0d4e4731db.tar.gz | |
Extract Python versions as top-level factors.
| -rw-r--r-- | .travis.yml | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 60f5815f..33ab283b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,20 @@ dist: trusty sudo: false language: python +python: +- 2.6 +- &latest_py2 2.7 +- 3.3 +- 3.4 +- 3.5 +- &latest_py3 3.6 +- nightly +- pypy +- pypy3 + jobs: fast_finish: true include: - - python: 2.6 - - python: &latest_py2 2.7 - - python: 3.3 - - python: 3.4 - - python: 3.5 - - python: &latest_py3 3.6 - - python: nightly - - python: pypy - - python: pypy3 - python: *latest_py3 env: LANG=C - python: *latest_py2 |
