From 53fefde4557cec9afe92a7d389d6d15e9b2d61aa Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Fri, 9 Nov 2018 10:07:09 -0500 Subject: [PATCH] Travis CI: make specified Python versions usable on jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For the two Python jobs, which seem to have the goal of making sure QEMU builds successfully on the 3.0-3.6 spectrum of Python 3 versions, the specified version is only applicable if a Python virtual environment is used. To do that, it's necessary to define the (primary?) language of the job to be Python. Also, Travis doesn't have a 3.0 Python installation available for the chosen distro, 3.4 being the lower version available. Reference: https://docs.travis-ci.com/user/languages/python/#specifying-python-versions Signed-off-by: Cleber Rosa Message-Id: <20181109150710.31085-4-crosa@redhat.com> Reviewed-by: Alex Bennée [ehabkost: Now 3.4 is the lowest Python version available] Signed-off-by: Eduardo Habkost fixup! Travis CI: make specified Python versions usable on jobs Signed-off-by: Eduardo Habkost --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 93fd0164a0..87d9fa971c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -175,12 +175,14 @@ matrix: # Python builds - env: - CONFIG="--target-list=x86_64-softmmu" + language: python python: - - "3.0" + - "3.4" - env: - CONFIG="--target-list=x86_64-softmmu" + language: python python: - "3.6"