On 9/11/18 16:07, Cleber Rosa wrote:
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.2 being the lower version available.

Reference: 
https://docs.travis-ci.com/user/languages/python/#specifying-python-versions

On this link the lower version available is 3.3, isnt' it?

Signed-off-by: Cleber Rosa <cr...@redhat.com>
---
  .travis.yml | 4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index aa49c7b114..5c18d3e268 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -112,9 +112,11 @@ matrix:
        compiler: clang
      # Python builds
      - env: CONFIG="--target-list=x86_64-softmmu"
+      language: python
        python:
-        - "3.0"
+        - "3.2"
      - env: CONFIG="--target-list=x86_64-softmmu"
+      language: python
        python:
          - "3.6"
      # Acceptance (Functional) tests


Reply via email to