From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 4FDAF6DE1761 for ; Thu, 16 Feb 2017 06:16:15 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.69 X-Spam-Level: X-Spam-Status: No, score=-0.69 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7, T_SPF_TEMPERROR=0.01] autolearn=disabled 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 mVC-g0eh6doO for ; Thu, 16 Feb 2017 06:16:14 -0800 (PST) X-Greylist: delayed 393 seconds by postgrey-1.35 at arlo; Thu, 16 Feb 2017 06:16:14 PST Received: from fallback-in2.mxes.net (fallback-out2.mxes.net [216.86.168.191]) by arlo.cworth.org (Postfix) with ESMTPS id 81FAA6DE1734 for ; Thu, 16 Feb 2017 06:16:14 -0800 (PST) Received: from mxout-08.mxes.net (mxout-08.mxes.net [216.86.168.183]) by fallback-in2.mxes.net (Postfix) with ESMTP id DCEAD2FD7BE for ; Thu, 16 Feb 2017 09:09:41 -0500 (EST) Received: from localhost (unknown [82.81.172.237]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTPSA id 43465509BB for ; Thu, 16 Feb 2017 09:09:39 -0500 (EST) Date: Thu, 16 Feb 2017 16:09:38 +0200 From: Aryeh Leib Taurog To: notmuch@notmuchmail.org Subject: notmuch version/Python bindings Message-ID: <20170216140938.GB16604@deb76.aryehleib.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Feb 2017 14:16:15 -0000 The latest notmuch includes libnotmuch.so.4.4.0 but the latest python bindings wrap libnotmuch.so.3 so importing from notmuch results in the following error: File "/home/altaurog/venv/offlineimap/lib/python2.7/site-packages/notmuch/__init__.py", line 54, in from .database import Database File "/home/altaurog/venv/offlineimap/lib/python2.7/site-packages/notmuch/database.py", line 24, in from .globals import ( File "/home/altaurog/venv/offlineimap/lib/python2.7/site-packages/notmuch/globals.py", line 27, in raise ImportError("Could not find shared 'notmuch' library.") ImportError: Could not find shared 'notmuch' library. I changed it to libnotmuch.so.4 in globals.py and it seems to work. Is that reasonable or should I expect problems?