From 4806be7f8f940dd2372204746103d93690466111 Mon Sep 17 00:00:00 2001 From: Gabriel Broadwin Nongsiej Date: Fri, 22 Mar 2019 14:36:05 +0530 Subject: [PATCH 1/3] Testing with Python v3.7.2 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c866897..54cfccd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,14 +6,14 @@ python: - "3.4" - "3.5" - "3.6" - - "3.7-dev" + - "3.7.2" - "pypy" - "pypy3" matrix: fast_finish: true allow_failures: - - python: "3.7-dev" + - python: "3.7.2" # 3.7-dev started crashing when building lxml although the neither the python version nor the lxml version seemed to change. # Will have to investigate further. - python: "pypy" From 5bd44c33443baf1f5578e8b03d1744bd3550e504 Mon Sep 17 00:00:00 2001 From: Gabriel Broadwin Nongsiej Date: Fri, 22 Mar 2019 15:49:17 +0530 Subject: [PATCH 2/3] Testing Python version 3.7 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 54cfccd..6491b75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,14 +6,14 @@ python: - "3.4" - "3.5" - "3.6" - - "3.7.2" + - "3.7" - "pypy" - "pypy3" matrix: fast_finish: true allow_failures: - - python: "3.7.2" + - python: "3.7" # 3.7-dev started crashing when building lxml although the neither the python version nor the lxml version seemed to change. # Will have to investigate further. - python: "pypy" From 3d3f8bdd558e251314999e1ee89ee13673d4c5e6 Mon Sep 17 00:00:00 2001 From: Kaushik Mahato Date: Fri, 22 Mar 2019 16:15:23 +0530 Subject: [PATCH 3/3] Testing with Python v3.7 --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6491b75..ea50072 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,12 +6,15 @@ python: - "3.4" - "3.5" - "3.6" - - "3.7" - "pypy" - "pypy3" matrix: fast_finish: true + include: + - python: 3.7 + dist: xenial + sudo: true allow_failures: - python: "3.7" # 3.7-dev started crashing when building lxml although the neither the python version nor the lxml version seemed to change.