Skip to content

Commit

Permalink
Add Python 3.7 to Travis CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Jan 10, 2019
1 parent 5d74f29 commit fa33cda
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
language: python
python:
- "2.7"
- "pypy"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy3"

sudo: false

.mixins:
- &xenial
dist: xenial

jobs:
include:
- python: "2.7"
- python: "pypy"
- python: "3.2"
- python: "3.3"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- <<: *xenial
python: "3.7"
- <<: *xenial
python: "3.8-dev"
- python: "nightly"
- python: "pypy3"

script:
- ./test/test_travis

0 comments on commit fa33cda

Please sign in to comment.