From unknown Sat Aug 16 14:31:53 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63980] [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm. Resent-From: Vinicius Monego Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 09 Jun 2023 15:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 63980 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63980@debbugs.gnu.org Cc: Vinicius Monego X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.1686326026904 (code B ref -1); Fri, 09 Jun 2023 15:54:01 +0000 Received: (at submit) by debbugs.gnu.org; 9 Jun 2023 15:53:46 +0000 Received: from localhost ([127.0.0.1]:60168 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7eQs-0000EV-7c for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:53:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:59006) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7eQq-0000EK-MI for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:53:44 -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 1q7eQf-00018C-MS for guix-patches@gnu.org; Fri, 09 Jun 2023 11:53:39 -0400 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q7eQd-0004lc-Gl for guix-patches@gnu.org; Fri, 09 Jun 2023 11:53:33 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id AD841240027 for ; Fri, 9 Jun 2023 17:53:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1686326007; bh=dEK641shP/qGXRQFZR9QGViv4v3YpnbZ8Apho1VaQpY=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version: Content-Transfer-Encoding:From; b=MmKoEBqQel86OzqcIMc5cTVIj32ZKkPd9/ME1Am8+5aQi6wCAamTYQ2QHaSNqCxwm CEPdMxLkEYGvIdIJihYuF4DzFFdQzGUKx5OfipR8ztVrGvl83XD3eY2w5APu/NGHrq 3HiWa5Pu+TdMINWvvPN+nzZBOS+t/W4DQo7Wb4Snn6DPAahWO8YxJje+W7xmkMQ1zP 3cICigNmk8WFWIOre6DhUlzMqlharmRtcweNKV8R/oOnMJfz3yzzCrfwZIhVIEDPwi bErGUpSyPRQtVJWl5RrhqArUa+A4iE9C+golY4NJcvK5dwrVdg7ZigiR9gxbzyCJw1 3MuD0Fcawsk/w== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Qd5GF3zn8z9rxF; Fri, 9 Jun 2023 17:53:25 +0200 (CEST) From: Vinicius Monego Date: Fri, 9 Jun 2023 15:52:29 +0000 Message-Id: <20230609155229.2656864-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=monego@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 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_MED=-2.3, 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.3 (-) 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.3 (--) * gnu/packages/python-xyz.scm (python-typeguard)[native-inputs]: Add python-setuptools-scm. --- This is required to report the correct version. gnu/packages/python-xyz.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7d5128911f..351e199e57 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23453,8 +23453,10 @@ (define-public python-typeguard ;; XXX: These fail when installed as a library: ;; https://github.com/agronholm/typeguard/issues/176 "not usefixtures and not test_cached_module"))))))) - (native-inputs - (list python-mypy python-pytest python-typing-extensions)) + (native-inputs (list python-mypy + python-pytest + python-setuptools-scm + python-typing-extensions)) (home-page "https://github.com/agronholm/typeguard") (synopsis "Run-time type checker for Python") (description -- 2.34.1 From unknown Sat Aug 16 14:31:53 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63980] [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 01 Jul 2023 21:26:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63980 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Vinicius Monego Cc: Christopher Baines , 63980@debbugs.gnu.org Received: via spool by 63980-submit@debbugs.gnu.org id=B63980.168824672624946 (code B ref 63980); Sat, 01 Jul 2023 21:26:01 +0000 Received: (at 63980) by debbugs.gnu.org; 1 Jul 2023 21:25:26 +0000 Received: from localhost ([127.0.0.1]:58822 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFi5u-0006UI-4B for submit@debbugs.gnu.org; Sat, 01 Jul 2023 17:25:26 -0400 Received: from eggs.gnu.org ([209.51.188.92]:44840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFi5s-0006U5-N7 for 63980@debbugs.gnu.org; Sat, 01 Jul 2023 17:25:25 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qFi5n-0002Nu-DV; Sat, 01 Jul 2023 17:25:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=xhTBJxWn/jC4BkfnI+uuRvjm3bHvrIYJKSqkKfvUVVQ=; b=P3o23yMKa/ZwqrO6MBvo wLEkB8zazR4X8Ot3NsidYMKB+aVFE/MpOBPG3Rl/n6vfQt7fvnmyqVcIf2JmiagI9m+fnibWH0r/E 0jBOPdSacwp38/Up97wQnvvym5F2AKJCCynYK+qioMB9dJboDOjwjcpnmXz4FV6uaReIV5CpE0+mG iO9i9n/vSHBlq8R76Dhxawnw9/2uPSfUNyIULkNh6wWXzy+ZXu2+QrN+E3geFRYXjltAO8N6sRlpZ wcB/Ux0tzZt9goSJJq73eLbPVfFNv4tCFzackLwdEpZGi7afhErikKb1yjaUvf7yVX5CPuafiY1I1 eGO3M0MAN+4Nng==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qFi5m-0006tg-Pp; Sat, 01 Jul 2023 17:25:19 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20230609155229.2656864-1-monego@posteo.net> Date: Sat, 01 Jul 2023 23:25:17 +0200 In-Reply-To: <20230609155229.2656864-1-monego@posteo.net> (Vinicius Monego's message of "Fri, 9 Jun 2023 15:52:29 +0000") Message-ID: <875y73wchu.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) 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 (---) Hi, Vinicius Monego skribis: > * gnu/packages/python-xyz.scm (python-typeguard)[native-inputs]: Add > python-setuptools-scm. LGTM! says it=E2=80=99s OK; the =E2=80=9CBl= ocked=E2=80=9D numbers are higher, but I=E2=80=99m not sure what that means since there ar= e no new packages here. Chris, WDYT? Thanks, Ludo=E2=80=99. From unknown Sat Aug 16 14:31:53 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63980] [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 02 Jul 2023 09:51:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63980 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 63980@debbugs.gnu.org Received: via spool by 63980-submit@debbugs.gnu.org id=B63980.168829142113315 (code B ref 63980); Sun, 02 Jul 2023 09:51:03 +0000 Received: (at 63980) by debbugs.gnu.org; 2 Jul 2023 09:50:21 +0000 Received: from localhost ([127.0.0.1]:59332 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFtim-0003Sh-KZ for submit@debbugs.gnu.org; Sun, 02 Jul 2023 05:50:20 -0400 Received: from mira.cbaines.net ([212.71.252.8]:42808) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFtii-0003SW-8y for 63980@debbugs.gnu.org; Sun, 02 Jul 2023 05:50:19 -0400 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:54d1:d5d4:280e:f699]) by mira.cbaines.net (Postfix) with ESMTPSA id 0C41827BBE2; Sun, 2 Jul 2023 10:50:15 +0100 (BST) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 52858dbf; Sun, 2 Jul 2023 09:50:13 +0000 (UTC) References: <20230609155229.2656864-1-monego@posteo.net> <875y73wchu.fsf@gnu.org> User-agent: mu4e 1.10.2; emacs 28.2 From: Christopher Baines Date: Sun, 02 Jul 2023 10:45:14 +0100 In-reply-to: <875y73wchu.fsf@gnu.org> Message-ID: <87a5weprqk.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) 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.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ludovic Court=C3=A8s writes: > Hi, > > Vinicius Monego skribis: > >> * gnu/packages/python-xyz.scm (python-typeguard)[native-inputs]: Add >> python-setuptools-scm. > > LGTM! > > says it=E2=80=99s OK; the =E2=80=9C= Blocked=E2=80=9D > numbers are higher, but I=E2=80=99m not sure what that means since there = are no > new packages here. Chris, WDYT? This is an issue with the data service incorrectly seeing some builds as not blocked, when they should be. Some of the builds in the base revision that are being counted in the "Unknown" column should actually be in blocked, which is why the blocked count appears to increase. I'm not quite sure what the issue is, but I'll have another look at fixing this. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmShSFNfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xeqtw//VDSqhcOJYrvDf4ed29FPbTnAbS3tJmwb zJOYEPi4OmfV2/Vp6E917gjgmri4Y+QfTPfqmjYGeqiLgLvidk91HRk3rBttrZye zOLBIvXfNeIx/BTJltFXTuoKsj45YzqRawVhvj41kf7+5oqkLhPrcUTIqcVqWj6E yxgL0FPUVtFi+KzxWNB/ql+KRBCtX8NJ0U+2/vGdBarPrptKsh9w9Qu1V1Mc1FFb a/WFM5Qtkzp5aHdCxar+cmfEnvgL6SGRkxrfwOhCQjnaEuOR1SC8rYm6YwQ8kg1L 7ln83YfPo/glwEGd22r5KxxqY0t7x1IwKmoKEWHphWe9jEShJ55dH7massnkZbdV EmrKYs4YrpMJxpdydOuXJ1Rpj75EDX1YX3E1tQWoaxZt/ZmnrVGNLWR0DxMg+JTe OmRBKZTr3B+uwVH/eM19z8ihXuSwNMBhTTbkfn5k5+t2DvTpeDXnkJsWKWIlJed/ kutwNm0h9Sibfquo78PBOF1gC9rDcnfL7FlxvRlaLPpYNYtoWm9YeMpYmCH2uRRe nMI/yabK3pySsA4gQCzqMtwmT3JXKPmdH3KEDp1MWR8CCnYaKRwPDKscvlTrRw3S MV8J6ZDI0cAI7bvVxuH9McXBH6DDD6H7hwROhIa+x9F7eiCqjXckm6qJjLDoeF7l pS2KRA1HTAc= =5kBh -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 16 14:31:53 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63980] [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm. Resent-From: Vinicius Monego Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 29 Jul 2023 18:55:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63980 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Christopher Baines , Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 63980@debbugs.gnu.org Received: via spool by 63980-submit@debbugs.gnu.org id=B63980.169065685732561 (code B ref 63980); Sat, 29 Jul 2023 18:55:02 +0000 Received: (at 63980) by debbugs.gnu.org; 29 Jul 2023 18:54:17 +0000 Received: from localhost ([127.0.0.1]:49016 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qPp4y-0008T6-Jn for submit@debbugs.gnu.org; Sat, 29 Jul 2023 14:54:16 -0400 Received: from mout01.posteo.de ([185.67.36.65]:58519) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qPp4x-0008Su-BX for 63980@debbugs.gnu.org; Sat, 29 Jul 2023 14:54:15 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 9A378240027 for <63980@debbugs.gnu.org>; Sat, 29 Jul 2023 20:54:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1690656849; bh=9bzMYb63z4WXvDKJNPTfmE/gN1Z4jw+nryXgt2LaApc=; h=Message-ID:Subject:From:To:Cc:Date:Content-Transfer-Encoding: MIME-Version:From; b=OmpSgv8MveVSHCTduuXdeBaVX9rC7j61UgDLRTzEfVBa5qKj1AFxusVCdp46kbRjv aj5RPGSr7Vwm4GWMSIdlryNyJJC/ldu1+sAOcaSyqT7AfLdhK8lLN5x2IYBKe8pnfJ SxEzYov/X2jmwMapWnDG5S31od2ozqNdzfzuXkdwG/QvskYVjBjlJARzNOcTzsqRp2 V4+mHcJO7REGFicZSyphvaSfHTTwIlP9tkr4Dth9AYr+mCVrm2HaaqJw4de5MqQk3O kkexoXRuHy+DywgtmTa50imSkVez7kkYQD6KUJDU+mIFE9hW9bBJCAwTphA9LzTuxd 2PeZOdZlqO9wQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4RCtvg4FQvz6txK; Sat, 29 Jul 2023 20:54:07 +0200 (CEST) Message-ID: <6fbc4f23de9f88480c3caffd2233276caf0189d9.camel@posteo.net> From: Vinicius Monego Date: Sat, 29 Jul 2023 18:53:59 +0000 In-Reply-To: <87a5weprqk.fsf@cbaines.net> References: <20230609155229.2656864-1-monego@posteo.net> <875y73wchu.fsf@gnu.org> <87a5weprqk.fsf@cbaines.net> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Spam-Score: -2.3 (--) 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 (---) Hi, Em dom, 2023-07-02 =C3=A0s 10:45 +0100, Christopher Baines escreveu: >=20 > Ludovic Court=C3=A8s writes: >=20 > > Hi, > >=20 > > Vinicius Monego skribis: > >=20 > > > * gnu/packages/python-xyz.scm (python-typeguard)[native-inputs]: > > > Add > > > python-setuptools-scm. > >=20 > > LGTM! > >=20 > > says it=E2=80=99s OK; the =E2=80= =9CBlocked=E2=80=9D > > numbers are higher, but I=E2=80=99m not sure what that means since ther= e > > are no > > new packages here.=C2=A0 Chris, WDYT? >=20 > This is an issue with the data service incorrectly seeing some builds > as > not blocked, when they should be. Some of the builds in the base > revision that are being counted in the "Unknown" column should > actually > be in blocked, which is why the blocked count appears to increase. >=20 > I'm not quite sure what the issue is, but I'll have another look at > fixing this. If it's a problem in the data service only, can I push this to master? There are 257 rebuilds with this change (including pytorch) and I want to add another one in https://issues.guix.gnu.org/63621 before it hits 300. Vinicius From unknown Sat Aug 16 14:31:53 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63980] [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 08 Sep 2023 21:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63980 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Vinicius Monego Cc: Christopher Baines , 63980@debbugs.gnu.org Received: via spool by 63980-submit@debbugs.gnu.org id=B63980.16942099003657 (code B ref 63980); Fri, 08 Sep 2023 21:52:01 +0000 Received: (at 63980) by debbugs.gnu.org; 8 Sep 2023 21:51:40 +0000 Received: from localhost ([127.0.0.1]:45781 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qejO7-0000wv-Mc for submit@debbugs.gnu.org; Fri, 08 Sep 2023 17:51:39 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:38074) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qejO4-0000wh-Sj for 63980@debbugs.gnu.org; Fri, 08 Sep 2023 17:51:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qejNt-000357-UA; Fri, 08 Sep 2023 17:51:26 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=E53iFr9x+HSZhsb0zglpBL8XbrsyOiolEbo6NS/vCh4=; b=C7RGgOigBeSU97iaZ2Fo k0iL2iNwPZ0ySCSxWE9YVDsc9z/p5zbBBKgKT4OjXKNiFpD1Be12F+WFQix7rzaDhwOS67yGpeDDN 7fP8mBrlAJLeLo5DhLC0k0V6B1yeEMyKnDvtqXCy7XFZmky9JOBzYxrIzwEvMR3wBC/DN5fH5KPvO mm0NMI/K9vz4vGbkFmjgQvOSpvGIVlBMn+dOBbHP05VRrnexaeRpsbFlz7k7GtakXtM3rq/P1KCyc 14G7AukS4MLAVrDQH2hS5O0Uox8Mc4P9K6pJ7ZijV4yEPvClRA+gAE8xC3RwWdY6Mxf28tfYywg6b /26A0jAAjaiqeA==; From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20230609155229.2656864-1-monego@posteo.net> <875y73wchu.fsf@gnu.org> <87a5weprqk.fsf@cbaines.net> <6fbc4f23de9f88480c3caffd2233276caf0189d9.camel@posteo.net> Date: Fri, 08 Sep 2023 23:51:21 +0200 In-Reply-To: <6fbc4f23de9f88480c3caffd2233276caf0189d9.camel@posteo.net> (Vinicius Monego's message of "Sat, 29 Jul 2023 18:53:59 +0000") Message-ID: <87sf7o1gh2.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) 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 (---) Hi Vinicius, Vinicius Monego skribis: > If it's a problem in the data service only, can I push this to master? > There are 257 rebuilds with this change (including pytorch) and I want > to add another one in https://issues.guix.gnu.org/63621 before it hits > 300. I think you can go ahead and push both series (assuming that at least =E2=80=98python-pytorch=E2=80=99 is fine after these changes). Thanks, Ludo=E2=80=99. From unknown Sat Aug 16 14:31:53 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Vinicius Monego Subject: bug#63980: closed (Re: bug#63980: [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm.) Message-ID: References: <066555a5f1b999b9f472d88372976251b98cc667.camel@posteo.net> <20230609155229.2656864-1-monego@posteo.net> X-Gnu-PR-Message: they-closed 63980 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 63980@debbugs.gnu.org Date: Sun, 17 Sep 2023 11:30:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1694950202-10580-1" This is a multi-part message in MIME format... ------------=_1694950202-10580-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #63980: [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-= scm. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 63980@debbugs.gnu.org. --=20 63980: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D63980 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1694950202-10580-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 63980-done) by debbugs.gnu.org; 17 Sep 2023 11:29:29 +0000 Received: from localhost ([127.0.0.1]:49232 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qhpxx-0002jb-3v for submit@debbugs.gnu.org; Sun, 17 Sep 2023 07:29:29 -0400 Received: from mout01.posteo.de ([185.67.36.65]:60987) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qhpxt-0002jM-Ig for 63980-done@debbugs.gnu.org; Sun, 17 Sep 2023 07:29:27 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id D5899240027 for <63980-done@debbugs.gnu.org>; Sun, 17 Sep 2023 13:29:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1694950151; bh=CzBSGkEJPdyHXEBp8iPmHxNXT0QieEGfaPnqKK3FIRk=; h=Message-ID:Subject:From:To:Cc:Date:Content-Transfer-Encoding: MIME-Version:From; b=kBwzsnP9DrW6+URTumnZiKuQgx09yGaRGYgxeQ3Xr+KJU2289GCzGiiQ0XFjrC78b XSjNGhmr5jTbw/4k+2gVkayGQ4JzoIY0XyDwmmakpv2H162HMAqh+oGjczzney414F Rt2aB9jGDYivwKZ9bX9ZAjUeP4U/aWmpWey8fRFhE1FxonLczvNdkE61fSkZp9nFGa JjLO6scmKzq7fKDVXnb8m+I9HMogkFoa88fLZy4Rr5GLSoxvQFFMK17RsxwgjWux2I Z38feDPSSwMiRQ+rS1reDGtRqPy/BKo7/8uEvuewhRz83vJJaE5e22SsM0hKt4Xah8 5Gx80SvLQrUDQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4RpQg95Y1Yz6tsf; Sun, 17 Sep 2023 13:29:09 +0200 (CEST) Message-ID: <066555a5f1b999b9f472d88372976251b98cc667.camel@posteo.net> Subject: Re: bug#63980: [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm. From: Vinicius Monego To: 63980-done@debbugs.gnu.org Date: Sun, 17 Sep 2023 11:29:01 +0000 In-Reply-To: <87sf7o1gh2.fsf_-_@gnu.org> References: <20230609155229.2656864-1-monego@posteo.net> <875y73wchu.fsf@gnu.org> <87a5weprqk.fsf@cbaines.net> <6fbc4f23de9f88480c3caffd2233276caf0189d9.camel@posteo.net> <87sf7o1gh2.fsf_-_@gnu.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63980-done Cc: Ludovic =?ISO-8859-1?Q?Court=E8s?= , Christopher Baines 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 (---) Em sex, 2023-09-08 =C3=A0s 23:51 +0200, Ludovic Court=C3=A8s escreveu: > Hi Vinicius, >=20 > Vinicius Monego skribis: >=20 > > If it's a problem in the data service only, can I push this to > > master? > > There are 257 rebuilds with this change (including pytorch) and I > > want > > to add another one in https://issues.guix.gnu.org/63621=C2=A0before it > > hits > > 300. >=20 > I think you can go ahead and push both series (assuming that at least > =E2=80=98python-pytorch=E2=80=99 is fine after these changes). >=20 > Thanks, > Ludo=E2=80=99. Hi Ludo, Closing this one because I applied it. I pushed only part of the other because the latest version of BoTorch is having issues with reporting its version, I will look further into it. Vinicius ------------=_1694950202-10580-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Jun 2023 15:53:46 +0000 Received: from localhost ([127.0.0.1]:60168 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7eQs-0000EV-7c for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:53:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:59006) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7eQq-0000EK-MI for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:53:44 -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 1q7eQf-00018C-MS for guix-patches@gnu.org; Fri, 09 Jun 2023 11:53:39 -0400 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q7eQd-0004lc-Gl for guix-patches@gnu.org; Fri, 09 Jun 2023 11:53:33 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id AD841240027 for ; Fri, 9 Jun 2023 17:53:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1686326007; bh=dEK641shP/qGXRQFZR9QGViv4v3YpnbZ8Apho1VaQpY=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version: Content-Transfer-Encoding:From; b=MmKoEBqQel86OzqcIMc5cTVIj32ZKkPd9/ME1Am8+5aQi6wCAamTYQ2QHaSNqCxwm CEPdMxLkEYGvIdIJihYuF4DzFFdQzGUKx5OfipR8ztVrGvl83XD3eY2w5APu/NGHrq 3HiWa5Pu+TdMINWvvPN+nzZBOS+t/W4DQo7Wb4Snn6DPAahWO8YxJje+W7xmkMQ1zP 3cICigNmk8WFWIOre6DhUlzMqlharmRtcweNKV8R/oOnMJfz3yzzCrfwZIhVIEDPwi bErGUpSyPRQtVJWl5RrhqArUa+A4iE9C+golY4NJcvK5dwrVdg7ZigiR9gxbzyCJw1 3MuD0Fcawsk/w== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Qd5GF3zn8z9rxF; Fri, 9 Jun 2023 17:53:25 +0200 (CEST) From: Vinicius Monego To: guix-patches@gnu.org Subject: [PATCH] gnu: python-typeguard: Add dependency on python-setuptools-scm. Date: Fri, 9 Jun 2023 15:52:29 +0000 Message-Id: <20230609155229.2656864-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=monego@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 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_MED=-2.3, 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.3 (-) X-Debbugs-Envelope-To: submit Cc: Vinicius Monego 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.3 (--) * gnu/packages/python-xyz.scm (python-typeguard)[native-inputs]: Add python-setuptools-scm. --- This is required to report the correct version. gnu/packages/python-xyz.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7d5128911f..351e199e57 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23453,8 +23453,10 @@ (define-public python-typeguard ;; XXX: These fail when installed as a library: ;; https://github.com/agronholm/typeguard/issues/176 "not usefixtures and not test_cached_module"))))))) - (native-inputs - (list python-mypy python-pytest python-typing-extensions)) + (native-inputs (list python-mypy + python-pytest + python-setuptools-scm + python-typing-extensions)) (home-page "https://github.com/agronholm/typeguard") (synopsis "Run-time type checker for Python") (description -- 2.34.1 ------------=_1694950202-10580-1--