From a4acac468deae076fd2ab46c572b4773bdc4cc15 Mon Sep 17 00:00:00 2001 From: Malware Utkonos Date: Wed, 16 Jan 2019 03:41:15 -0500 Subject: [PATCH 1/4] Update CI to cover python 3.7 --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cd101fc..088986e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,11 @@ python: - "2.7" sudo: required dist: trusty +matrix: + include: + - python: 3.7 + dist: xenial + sudo: true before_install: - scripts/install_dgraph.sh install: @@ -11,4 +16,4 @@ install: - pip install coveralls script: - scripts/build.sh -after_success: coveralls \ No newline at end of file +after_success: coveralls From a52ddbeea62f3972f5c4673415ef528326260c4c Mon Sep 17 00:00:00 2001 From: Malware Utkonos Date: Wed, 16 Jan 2019 16:55:29 -0500 Subject: [PATCH 2/4] Drop python 3.6 in favor of 3.7 and switch syntax to matrix --- .travis.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 088986e..bbf7086 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,6 @@ -language: python -python: - - "3.6" - - "2.7" -sudo: required -dist: trusty matrix: include: + - python: 2.7 - python: 3.7 dist: xenial sudo: true From 653e082810e312025584eba2cea04ad22934d1da Mon Sep 17 00:00:00 2001 From: Malware Utkonos Date: Wed, 16 Jan 2019 16:59:17 -0500 Subject: [PATCH 3/4] Fix matrix syntax error --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index bbf7086..8c1a9a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ matrix: include: - python: 2.7 + dist: xenial + sudo: true - python: 3.7 dist: xenial sudo: true From b59f5539a25bbd9f6bfdb975704a3f813225e167 Mon Sep 17 00:00:00 2001 From: Malware Utkonos Date: Wed, 16 Jan 2019 17:04:13 -0500 Subject: [PATCH 4/4] Maybe this will work ;) --- .travis.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8c1a9a9..e7b75e6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,9 @@ -matrix: - include: - - python: 2.7 - dist: xenial - sudo: true - - python: 3.7 - dist: xenial - sudo: true +language: python +python: + - "3.7" + - "2.7" +sudo: required +dist: xenial before_install: - scripts/install_dgraph.sh install: