From nobody Mon Nov 10 14:25:03 2025 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1557339905; cv=none; d=zoho.com; s=zohoarc; b=aKLVZnUhHQ8cTHgK4mILOc4/499xF0QKHj46rViYdF04+J6N2AW4clDgUA04TddKPVmfG1Ww4Z+i2dZBHcvSTm3oGbDPQmIovDqbYgLAv8vGwka/bllzN18unCmPuGCg/tROXRvxdX1NWoEy9mrK+VqfsCCdRRRpIPt3WODFAeE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1557339905; h=Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=0dR2FSeEDC9phvHYzdZnllH1l4Xs9zlLcPP/r3gEIP8=; b=alhXMIRDMnZkZ6vpKPFZ3vs0xtTHiM5iTPhyHfxneZzVFUQJx6wG+AF9FjHG8xirkXX2xLKvXKR2JCP57zU7jZe5LKuI/pXFAVVlbv6olQb7y3zr8d9Q53uEM2ojRmndGocD4Wg9cov95rnjXfmrBkFRRetOlKDXGVm8AN+0Uus= ARC-Authentication-Results: i=1; mx.zoho.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 155733990596151.87096593184867; Wed, 8 May 2019 11:25:05 -0700 (PDT) Received: from localhost ([127.0.0.1]:41396 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hORFK-0003MX-El for importer@patchew.org; Wed, 08 May 2019 14:24:50 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hOREN-000359-ME for qemu-devel@nongnu.org; Wed, 08 May 2019 14:23:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hOREI-0001dr-Ur for qemu-devel@nongnu.org; Wed, 08 May 2019 14:23:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33718) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hOREI-0001aJ-PX for qemu-devel@nongnu.org; Wed, 08 May 2019 14:23:46 -0400 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5032BC058CBD; Wed, 8 May 2019 18:23:45 +0000 (UTC) Received: from localhost (ovpn-116-61.gru2.redhat.com [10.97.116.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id B603427BA8; Wed, 8 May 2019 18:23:42 +0000 (UTC) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Wed, 8 May 2019 15:23:39 -0300 Message-Id: <20190508182339.22447-1-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Wed, 08 May 2019 18:23:45 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] configure: Require python3 >= 3.5 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , Peter Maydell , Thomas Huth , Markus Armbruster , Cleber Rosa , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" 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 Reviewed-by: Thomas Huth --- configure | 5 +++-- .travis.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 6b3ed8c532..520c207d66 100755 --- a/configure +++ b/configure @@ -1841,8 +1841,9 @@ fi =20 # 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 >=3D 2.7 or Python 3 is requi= red." \ +if ! $python -c 'import sys; sys.exit(sys.version_info < (2,7) or \ + (3,0) <=3D sys.version_info < (3,5))= '; then + error_exit "Cannot use '$python', Python 2 >=3D 2.7 or Python 3 >=3D 3.5= is required." \ "Use --python=3D/path/to/python to specify a supported Python." fi =20 diff --git a/.travis.yml b/.travis.yml index 66448d99d6..0f6986b3f1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -211,7 +211,7 @@ matrix: - CONFIG=3D"--target-list=3Dx86_64-softmmu" language: python python: - - "3.4" + - "3.5" =20 =20 - env: --=20 2.18.0.rc1.1.g3f1ff2140