From 133f5c7952236b461de5ed7ea5a5b1985b981eea Mon Sep 17 00:00:00 2001 From: Babak Farrokhi Date: Sun, 5 Aug 2018 16:41:18 +0430 Subject: [PATCH] Trying to fix python 3.7 build on Travis --- .travis.yml | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7824efa..7eddd84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,15 +3,13 @@ sudo: false install: "pip install -r requirements.txt" script: nosetests dnstraceroute.py matrix: - fast_finish: true - include: - - python: "3.3" - - python: "3.4" - - python: "3.5" - - python: "3.6" - - python: "3.7" - - python: "3.8-dev" - - python: "pypy3" - dist: xenial - sudo: true - + fast_finish: true + include: + - python: "3.3" + - python: "3.4" + - python: "3.5" + - python: "3.6" + - python: "pypy3" + - python: 3.7 + dist: xenial + sudo: true