diff options
| -rw-r--r-- | .travis.yml | 17 | 
1 files changed, 11 insertions, 6 deletions
| diff --git a/.travis.yml b/.travis.yml index c687962..7abcfd7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,16 @@  dist: xenial  language: python -python: -    - "3.6" -    - "3.6-dev" -    - "3.7" -    - "3.7-dev" -    - "3.8-dev" +matrix: +  include: +    - python: "3.6" +    - python: "3.7" +    - python: "3.6-dev" +    - python: "3.7-dev" +    - python: "3.8-dev" +  allow_failures: +    - python: "3.6-dev" +    - python: "3.7-dev" +    - python: "3.8-dev"  install:      - pip install .  script: | 
