From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id qD43Hucv+14RdAAA0tVLHw (envelope-from ) for ; Tue, 30 Jun 2020 12:28:23 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id ID43Gucv+16xFgAAB5/wlQ (envelope-from ) for ; Tue, 30 Jun 2020 12:28:23 +0000 Received: from arlo.cworth.org (arlo.cworth.org [50.126.95.6]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 6440C9408FC for ; Tue, 30 Jun 2020 12:28:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 8A36F6DE0F76; Tue, 30 Jun 2020 05:28:15 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HZ9NCnJjRXJ9; Tue, 30 Jun 2020 05:28:14 -0700 (PDT) Received: from arlo.cworth.org (localhost [IPv6:::1]) by arlo.cworth.org (Postfix) with ESMTP id 6EB7D6DE0F07; Tue, 30 Jun 2020 05:28:14 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id CAAA76DE0F07 for ; Tue, 30 Jun 2020 05:28:12 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i6gTIG0PDLzV for ; Tue, 30 Jun 2020 05:28:11 -0700 (PDT) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by arlo.cworth.org (Postfix) with ESMTP id B6CEB6DE0EF2 for ; Tue, 30 Jun 2020 05:28:11 -0700 (PDT) Received: by fethera.tethera.net (Postfix, from userid 1001) id 1F7596141D; Tue, 30 Jun 2020 08:28:11 -0400 (EDT) Received: (nullmailer pid 2271883 invoked by uid 1000); Tue, 30 Jun 2020 12:28:09 -0000 Resent-To: notmuch@notmuchmail.org Resent-From: David Bremner Resent-Date: Tue, 30 Jun 2020 09:28:09 -0300 Resent-Message-ID: <87k0zokaau.fsf@tethera.net> Received: by fethera.tethera.net (Postfix, from userid 1001) id 8DB37613B3; Thu, 25 Jun 2020 07:01:06 -0400 (EDT) Received: (nullmailer pid 208657 invoked by uid 1000); Thu, 25 Jun 2020 11:00:51 -0000 From: David Bremner To: notmuch@notmuchmail.org Subject: [PATCH 1/2] Revert "python-cffi: read version from notmuch version file" Date: Thu, 25 Jun 2020 08:00:44 -0300 Message-Id: <20200625110045.208558-2-david@tethera.net> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200625110045.208558-1-david@tethera.net> References: <20200625110045.208558-1-david@tethera.net> MIME-Version: 1.0 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: notmuch-bounces@notmuchmail.org Sender: "notmuch" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 50.126.95.6 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Spam-Score: 0.99 X-TUID: you51rfqAtrl This reverts commit 81057164cddf6a5c1d4c30a23767c4de8e615c1c. That version turns out not to work with some variety of pip install. --- bindings/python-cffi/setup.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/bindings/python-cffi/setup.py b/bindings/python-cffi/setup.py index 1effcfc6..37918e3d 100644 --- a/bindings/python-cffi/setup.py +++ b/bindings/python-cffi/setup.py @@ -1,17 +1,9 @@ -import pathlib - import setuptools -THIS_FILE = pathlib.Path(__file__).absolute() -PROJECT_ROOT = THIS_FILE.parent.parent.parent -with open(PROJECT_ROOT.joinpath('version')) as fp: - VERSION = fp.read().strip() - - setuptools.setup( name='notmuch2', - version=VERSION, + version='0.1', description='Pythonic bindings for the notmuch mail database using CFFI', author='Floris Bruynooghe', author_email='flub@devork.be', -- 2.27.0