From 2cfe65700066030578f7fbc4f90176a0fb26a688 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Sun, 24 Nov 2019 17:07:48 -0500 Subject: Add support for latest Python releases --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 7525487..4906456 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,13 @@ -dist: precise +dist: xenial language: python python: - "2.7" - "3.3" - "3.4" - "3.5" + - "3.6" + - "3.7" + - "3.8" # command to install dependencies install: -- cgit From c87bad8dedc0ea2a52171840d24451e2117c8325 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Sun, 24 Nov 2019 17:10:43 -0500 Subject: Drop end of life Python 3.3 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 4906456..725a0b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ dist: xenial language: python python: - "2.7" - - "3.3" - "3.4" - "3.5" - "3.6" -- cgit From 2b6ea5ead81ac069452d73e00f3b19d4325611d0 Mon Sep 17 00:00:00 2001 From: Paulo Henrique Silva Date: Mon, 25 Nov 2019 15:34:37 -0300 Subject: Upgrade for new requirements-dev.txt --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 7525487..d4c40c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,7 @@ python: # command to install dependencies install: - - "pip install -r requirements.txt" - - "pip install -r test-requirements.txt" + - "pip install -r requirements-dev.txt" - "pip install coveralls" # command to run tests -- cgit From db54393f4e01a037c8a9611680267facc2347e98 Mon Sep 17 00:00:00 2001 From: Paulo Henrique Silva Date: Mon, 25 Nov 2019 16:31:41 -0300 Subject: Remove travis, coverage still missing on gh actions --- .travis.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1226075..0000000 --- a/.travis.yml +++ /dev/null @@ -1,22 +0,0 @@ -dist: xenial -language: python -python: - - "2.7" - - "3.4" - - "3.5" - - "3.6" - - "3.7" - - "3.8" - -# command to install dependencies -install: - - "pip install -r requirements-dev.txt" - - "pip install coveralls" - -# command to run tests -script: - - make test-coverage - -# Coveralls -after_success: - - coveralls -- cgit