From debbugs-submit-bounces@debbugs.gnu.org Mon May 08 06:20:34 2023 Received: (at submit) by debbugs.gnu.org; 8 May 2023 10:20:34 +0000 Received: from localhost ([127.0.0.1]:39253 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvxys-00052R-9P for submit@debbugs.gnu.org; Mon, 08 May 2023 06:20:34 -0400 Received: from lists.gnu.org ([209.51.188.17]:38450) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvxyq-00052K-G2 for submit@debbugs.gnu.org; Mon, 08 May 2023 06:20:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvxyo-0007WQ-EE for guix-patches@gnu.org; Mon, 08 May 2023 06:20:30 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvxym-0000YA-Jb for guix-patches@gnu.org; Mon, 08 May 2023 06:20:30 -0400 Received: (Authenticated sender: tanguy@bioneland.org) by mail.gandi.net (Postfix) with ESMTPSA id 8FC261BF206; Mon, 8 May 2023 10:20:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bioneland.org; s=gm1; t=1683541223; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=SKjrYY/7T00QTOosf//G5pvbI/YyY8Mzv9MJPW7MTWo=; b=i64QrFiIoAPZ/y6yWLscBsKUAwUy9ghzZE8WvLwfy5gPHA6SnaM7mcAvprucT+ceXw2CtX 4X6jftD6Wn+avv+/SOfmHfd8TCO9q2vRujCgwFHPlyMSV+bNbkC4V9IBE3/iyjpHO5GWUi GAjMP975EPQpX5rymhH+/HQJL+RmKnV81WY4yAhWuAw8E6sbTwxhvD0T+B1tiGkNnNJzLg GI7m1SH0vQNGk/8jNk7tQh5AfpFLjBaoyH8DO8P3jYTv0UyDf4ln9kaGt7YSyaZ4NTvqw9 QaDwMIgbhzsGO7UPWUSLDg/BsT8hq4XjKoW24TWu5dMi7uSRHNvOVmMQdVbXFQ== From: Tanguy Le Carrour To: guix-patches@gnu.org Subject: [PATCH] gnu: python-leather: Update to 0.3.4. Date: Mon, 8 May 2023 12:20:13 +0200 Message-Id: <11f80983e0d91546d70df1356ed1fcfe406c993d.1683541020.git.tanguy@bioneland.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.201; envelope-from=tanguy@bioneland.org; helo=relay8-d.mail.gandi.net X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: Tanguy Le Carrour X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) Hi Guix, `python-leather` is broken for it's not compatible with Python 3.10. Upgrading it fixes the problem. Regards, Tanguy * gnu/packages/wireservice.scm (python-leather): Update to 0.3.4. --- gnu/packages/wireservice.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index d315bc2d74..b8b2cff3f7 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -65,7 +65,7 @@ (define-syntax-rule (wireservice-package extra-fields ...) (define-public python-leather (wireservice-package (name "python-leather") - (version "0.3.3") + (version "0.3.4") (source (origin (method git-fetch) (uri (git-reference @@ -74,7 +74,7 @@ (define-public python-leather (file-name (git-file-name name version)) (sha256 (base32 - "1ck3dplni99sv4s117cbm07ydwwjsrxkhdy19rnk0iglia1d4s5i")))) + "00cg4cidl15q1xv2pmxdkia5brig7x0xy9hwf2mlf9cq39bpj1w6")))) (native-inputs `(("python-nose" ,python-nose) ("python-sphinx" ,python-sphinx) base-commit: b7e77446261fdc8dab360d7835a5dec919f6a79f -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Tue May 09 08:22:22 2023 Received: (at 63367-done) by debbugs.gnu.org; 9 May 2023 12:22:22 +0000 Received: from localhost ([127.0.0.1]:42607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pwMMI-00072O-0T for submit@debbugs.gnu.org; Tue, 09 May 2023 08:22:22 -0400 Received: from mout01.posteo.de ([185.67.36.65]:57871) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pwMMF-000722-PV for 63367-done@debbugs.gnu.org; Tue, 09 May 2023 08:22:20 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 86C48240248 for <63367-done@debbugs.gnu.org>; Tue, 9 May 2023 14:22:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1683634933; bh=e4F0KjcLZ6PoAQiutoB5fODqZbIShqAhEygBgr03bOY=; h=From:To:Cc:Subject:Date:From; b=TiqNKwbN16VAG6MEbHxVIR9yhiFzRw/Sk/gOGDGsj47nWlI2uYSnNqam5CGXCTwK7 MrrBW78i9tERtTpZQ9IhPd+QrD5eZYRM+YmZktv2Yx6UXKSZvNxb4To8MAnF6fznDR I9jMQUBgI7yqOxfO+Mb6yw+s6Qq+VPQiJOw4/VWTFYIwioURv+EZoKTo3pVSi06Q6f dt+1oECkoqiYw2doZPoxhl3K79MpCB5pxlnpIJBx8qrVIyQ6sSpKBJDbwTAV7UUnUW ldzSOwTPC72/aTrDgIlGowzjbyS+d7ap2V1p4E25jADY643Jz4xYkXta3SAJtw/O1r fPT1by4BpfRZA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4QFy2r66MVz6twj; Tue, 9 May 2023 14:22:12 +0200 (CEST) References: <11f80983e0d91546d70df1356ed1fcfe406c993d.1683541020.git.tanguy@bioneland.org> From: Guillaume Le Vaillant To: Tanguy Le Carrour Subject: Re: [bug#63367] [PATCH] gnu: python-leather: Update to 0.3.4. Date: Tue, 09 May 2023 12:21:38 +0000 In-reply-to: <11f80983e0d91546d70df1356ed1fcfe406c993d.1683541020.git.tanguy@bioneland.org> Message-ID: <87ild1oft7.fsf@kitej> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63367-done Cc: 63367-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Patch pushed as 76a3deb8675576a6ce64874234c9d3881060db3b. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Tue May 09 08:41:02 2023 Received: (at 63367-done) by debbugs.gnu.org; 9 May 2023 12:41:03 +0000 Received: from localhost ([127.0.0.1]:42633 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pwMeM-0007f8-KM for submit@debbugs.gnu.org; Tue, 09 May 2023 08:41:02 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:40087) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pwMeJ-0007eO-Kk for 63367-done@debbugs.gnu.org; Tue, 09 May 2023 08:41:01 -0400 Received: (Authenticated sender: tanguy@bioneland.org) by mail.gandi.net (Postfix) with ESMTPSA id D9D4120008; Tue, 9 May 2023 12:40:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bioneland.org; s=gm1; t=1683636053; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=SswGpTpnpzI4FcURdypyBmD8pNrj+9uV1uUYZGMp1M0=; b=A0v77nHu4PlDZpamkPfsCSbyQ4wnC8Wz2AL/dkBCBnCSEQEhEEgAKg089XEu0BCwA1ePBJ YKMKywcpdelYOBhXAE+NWv02lMzZhFj3pCc6OG7gmT6aGIzTJk+GNyT8ZbM1K30fGUqVZg ODY49tOYAPhDiOxtXvj2xLaPgXzwo/KiziTINZ1HqmFFOP7q4VHz69bBuyPEooB6hRPpyo XTqaE2Fx0fafPI7nvLkc+YsTrkt5X37IgOgr6hayGFTa+FKVNKx6f1y89OuIh6X1+QS2nC aUyib88/qmn1Q+fWjfPpi/v7ghOzc93q6lu8350ILjGV+NKcbMM6894NSMQRCQ== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable References: <11f80983e0d91546d70df1356ed1fcfe406c993d.1683541020.git.tanguy@bioneland.org> <87ild1oft7.fsf@kitej> Subject: Re: [bug#63367] [PATCH] gnu: python-leather: Update to 0.3.4. From: Tanguy LE CARROUR To: Guillaume Le Vaillant In-Reply-To: <87ild1oft7.fsf@kitej> Date: Tue, 09 May 2023 14:40:52 +0200 Message-ID: <168363605233.18202.15645052880918751904@localhost> User-Agent: alot/0.10 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 63367-done Cc: 63367-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Quoting Guillaume Le Vaillant (2023-05-09 14:21:38) > Patch pushed as 76a3deb8675576a6ce64874234c9d3881060db3b. > Thanks. Thanks! --=20 Tanguy From unknown Fri Jun 20 07:22:01 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 07 Jun 2023 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator