Commit 3e1cac5aa9815c023783bf9f3e13c414ca4aed2a

Authored by Sebastian Willenborg
1 parent 6b7a0bb9

Enable testing for more recent python3.7 version

Showing 1 changed file with 17 additions and 5 deletions
.travis.yml
1 1 language: python
2   -
3   -python:
4   - - "2.7"
5   - - "3.6"
6   - - "nightly"
7 2 cache: pip
  3 +sudo: false
  4 +
  5 +matrix:
  6 + include:
  7 + - python: 2.7
  8 + - python: 3.4
  9 + - python: 3.5
  10 + - python: 3.6
  11 + - python: 3.7
  12 + dist: xenial
  13 + sudo: yes
  14 + - python: nightly
  15 + dist: xenial
  16 + sudo: yes
  17 + - python: pypy
  18 + - python: pypy3
  19 +
8 20 script:
9 21 - python setup.py test
... ...