Skip to content

Commit

Permalink
Use xenial dist in Travis CI (#78)
Browse files Browse the repository at this point in the history
🍝 Reading this (https://docs.travis-ci.com/user/languages/python/#development-releases-support), trusty has outdated Python versions. Python3.7-dev in there was really Python 3.7.0a4 instead of the latest release.

With xenial, `3.7` gives us Python 3.7.1, and `3.7-dev` gives us Python 3.7.2+.
  • Loading branch information
Mariatta committed Feb 13, 2019
1 parent ea15881 commit 24feb6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
language: python
cache: pip
python:
- "3.6-dev"
- "3.6"
- "3.7"
- "3.7-dev"
- "nightly"
dist: xenial

matrix:
fast_finish: true
Expand Down

0 comments on commit 24feb6c

Please sign in to comment.