diff options
author | Benoit Pierre <benoit.pierre@gmail.com> | 2018-10-19 18:17:51 +0200 |
---|---|---|
committer | Benoit Pierre <benoit.pierre@gmail.com> | 2018-10-21 15:54:39 +0200 |
commit | 544f4b939943c80bdaf468e72c4cbeddd6cfe585 (patch) | |
tree | 49026f8ac3e6fc1f7215f278f2bcf8c17e3b10e9 | |
parent | 18708e4ad51e32ef0aa09e15aaa5bfa7240cf2c9 (diff) | |
download | python-setuptools-git-544f4b939943c80bdaf468e72c4cbeddd6cfe585.tar.gz |
travis: fix support for Python 3.7 and add support for 3.8
-rw-r--r-- | .travis.yml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index fba548e9..627c1f63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,24 +1,29 @@ dist: trusty language: python -python: -- &latest_py2 2.7 -- 3.4 -- 3.5 -- &latest_py3 3.6 -- nightly -- pypy -- pypy3 jobs: fast_finish: true include: - - python: *latest_py3 + - &latest_py2 + python: 2.7 + - <<: *latest_py2 env: LANG=C - - python: *latest_py2 + - python: pypy + - python: pypy3 + - python: 3.4 + - python: 3.5 + - &default_py + python: 3.6 + - &latest_py3 + python: 3.7 + dist: xenial + - <<: *latest_py3 env: LANG=C - - stage: deploy (to PyPI for tagged commits) + - python: 3.8-dev + dist: xenial + - <<: *default_py + stage: deploy (to PyPI for tagged commits) if: tag IS present - python: *latest_py3 install: skip script: skip after_success: true |