From fd86455076d97210cf2c8e5837f8731d3c9c721c Mon Sep 17 00:00:00 2001 From: dhutty Date: Fri, 3 Jan 2020 03:29:33 -0500 Subject: [PATCH] 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