The oldest python3 version in distros that will be supported by QEMU 4.1 is 3.5.3 (the one in Debian Stretch). Error out if running python3 < 3.5.
We have a .travis.yml job configured to use Python 3.4. Change it to use Python 3.5. Signed-off-by: Eduardo Habkost <ehabk...@redhat.com> Message-Id: <20190508182339.22447-1-ehabk...@redhat.com> Reviewed-by: Thomas Huth <th...@redhat.com> Signed-off-by: Eduardo Habkost <ehabk...@redhat.com> --- configure | 5 +++-- .travis.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure b/configure index dcc732ff1e..9dc960824f 100755 --- a/configure +++ b/configure @@ -1852,8 +1852,9 @@ fi # Note that if the Python conditional here evaluates True we will exit # with status 1 which is a shell 'false' value. -if ! $python -c 'import sys; sys.exit(sys.version_info < (2,7))'; then - error_exit "Cannot use '$python', Python 2 >= 2.7 or Python 3 is required." \ +if ! $python -c 'import sys; sys.exit(sys.version_info < (2,7) or \ + (3,0) <= sys.version_info < (3,5))'; then + error_exit "Cannot use '$python', Python 2 >= 2.7 or Python 3 >= 3.5 is required." \ "Use --python=/path/to/python to specify a supported Python." fi diff --git a/.travis.yml b/.travis.yml index b053a836a3..75e017a5cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -212,7 +212,7 @@ matrix: - CONFIG="--target-list=x86_64-softmmu" language: python python: - - "3.4" + - "3.5" - env: -- 2.18.0.rc1.1.g3f1ff2140