From nobody Fri Apr 19 18:03:59 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=patchew-devel-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=patchew-devel-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1557920393; cv=none; d=zoho.com; s=zohoarc; b=BKB0V+65VFYYAIZNfa71t+Txds9GaJmn3viJU8emKGG8qrnoFbFywIpwMUOqd+c/tXLkwhCDBTpeHsZGwqD7HJL/7/Mo0XQ8ylCMh2MF8FGOBtEAdtvAoy0CIfo/7IP7PFQXDb7AhjLPz40WPAw5CDglY7kQO6smLWUm30QvpiA= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1557920393; h=Content-Type:Content-Transfer-Encoding:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=cXCB4mh0LrddTFOUswsFoVWLp49oSBcofvxfFYihsDk=; b=OFwXpmCVe8VpaGad8fpTYRZobBWOlfsRK2v6ubuT8JgE/UUE3hoq4VvLVdEcC/WRbMG0Ee4xdcYQ4n+XzWnrROtwOK1fNIjvHreztbUp/cY+uVh+W8i9P3ssQWccpYkHXLAW6mxHGrg4XojPI5wdpmtS58uA7q3wn1BCq7U8VTI= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=patchew-devel-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 155792039344091.14289532720068; Wed, 15 May 2019 04:39:53 -0700 (PDT) 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 01AFB58E5C; Wed, 15 May 2019 11:39:52 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EB19119C71; Wed, 15 May 2019 11:39:51 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id DD0754BB43; Wed, 15 May 2019 11:39:51 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x4FBc1om027034 for ; Wed, 15 May 2019 07:38:01 -0400 Received: by smtp.corp.redhat.com (Postfix) id BB68719C71; Wed, 15 May 2019 11:38:01 +0000 (UTC) Received: from donizetti.redhat.com (ovpn-112-34.ams2.redhat.com [10.36.112.34]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4F63919722 for ; Wed, 15 May 2019 11:37:56 +0000 (UTC) From: Paolo Bonzini To: patchew-devel@redhat.com Date: Wed, 15 May 2019 13:37:53 +0200 Message-Id: <20190515113753.25553-1-pbonzini@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-loop: patchew-devel@redhat.com Subject: [Patchew-devel] [PATCH] requirement.txt: install binary psyscopg2 wheel X-BeenThere: patchew-devel@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Patchew development and discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: patchew-devel-bounces@redhat.com Errors-To: patchew-devel-bounces@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.39]); Wed, 15 May 2019 11:39:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Do not rebuild psycopg2 from source, it requires the host to have all the toolchain installed. Signed-off-by: Paolo Bonzini Reviewed-by: Philippe Mathieu-Daud=C3=A9 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a00e5ef..fe7928f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,4 @@ jsonfield2 >=3D 3.0, < 4.0 drf-nested-routers coreapi-cli pyyaml -psycopg2 +psycopg2-binary --=20 2.21.0 _______________________________________________ Patchew-devel mailing list Patchew-devel@redhat.com https://www.redhat.com/mailman/listinfo/patchew-devel