From fd86455076d97210cf2c8e5837f8731d3c9c721c Mon Sep 17 00:00:00 2001 From: dhutty Date: Fri, 3 Jan 2020 03:29:33 -0500 Subject: [PATCH 1/2] CI: Disable building on Python 3.4 As can be seen in https://travis-ci.org/adrienverge/yamllint/builds/631325436?utm_source=github_status&utm_medium=notification The dependency, pathspec, requires Python '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*' but the running Python is 3.4.8 This commit stops Travis building yamllint against 3.4 so that CI can pass again. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 58dd54a..9c0882a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069) language: python python: - 2.7 - - 3.4 - 3.5 - 3.6 - 3.7 From 734d5d5f736eb9d31c111ae8a0ca834d96c51bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 3 Jan 2020 09:26:09 +0100 Subject: [PATCH 2/2] CI: Run tests on Python 3.8 Python 3.8 was released in October 2019. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 9c0882a..44ea648 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - 3.5 - 3.6 - 3.7 + - 3.8 - nightly install: - pip install pyyaml coveralls flake8 flake8-import-order doc8