From debbugs-submit-bounces@debbugs.gnu.org Wed May 18 15:21:33 2022 Received: (at submit) by debbugs.gnu.org; 18 May 2022 19:21:33 +0000 Received: from localhost ([127.0.0.1]:33674 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nrPEj-0001y7-Et for submit@debbugs.gnu.org; Wed, 18 May 2022 15:21:33 -0400 Received: from lists.gnu.org ([209.51.188.17]:39250) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nrPEh-0001xz-59 for submit@debbugs.gnu.org; Wed, 18 May 2022 15:21:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57830) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nrPEg-0000jL-Mn for guix-patches@gnu.org; Wed, 18 May 2022 15:21:31 -0400 Received: from mout01.posteo.de ([185.67.36.65]:44421) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nrPEe-0007QB-LJ for guix-patches@gnu.org; Wed, 18 May 2022 15:21:30 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id EF146240028 for ; Wed, 18 May 2022 21:21:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1652901685; bh=+ahaMQeJrbc8RZS22VgMp4/ywjsfXRimgFUGPw0um8E=; h=From:To:Cc:Subject:Date:From; b=BZVxSqmluMXKZpAJ3yJ0faYGwi85Y/SQqxjgI4sQzCWpkY52mffGNxiDxGg5ITXYm V7rZXilR8mQP3FTR1onxczpCCG9JhkeNaChrjMcY48WcHVhraOqUVblpiIChMGPnsb FQeMQ6L8zzNgUok4ghiy//zFiwR9p7a32KA19kSCuwgeB1zW9hcIfXcAbAwinZL4M+ nQHPYncGhNdXt3NmqcRtfOF+3crNIl692jk7bRz3b8q/ukAlG/KD6P0b2K/9wXdiAV cU5w2bf4TVHe1KyzQi58IOGE20MmMMEyT7kDGUqIVySPgrDdS29cDgvrlyOV8cEjDt rFtBo7StovfBw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4L3NBr2xHzz6tn0; Wed, 18 May 2022 21:21:24 +0200 (CEST) From: Felix Gruber To: guix-patches@gnu.org Subject: [PATCH] gnu: python-geopandas: Fix build. Date: Wed, 18 May 2022 19:21:11 +0000 Message-Id: <20220518192111.20342-1-felgru@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=felgru@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: Felix Gruber 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/geo.scm (python-geopandas)[arguments]: Disable broken tests. Re-enable test_fillna_no_op_returns_copy which does not fail anymore. --- gnu/packages/geo.scm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index c2569c27d4..0c9240eea7 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -715,9 +715,14 @@ pyproj, Rtree, and Shapely.") (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest" - ; Disable test that fails with - ; NotImplementedError in pandas. - "-k" "not test_fillna_no_op_returns_copy" + ; Disable tests that fail due to incompatibilities + ; with our pandas version. + "-k" + (string-append + "not test_getitem_invalid" + " and not test_value_counts" + " and not test_setitem_invalid" + " and not test_insert_invalid") ; Disable tests that require internet access. "-m" "not web"))))))) (propagated-inputs -- 2.30.2 From debbugs-submit-bounces@debbugs.gnu.org Fri May 20 18:14:28 2022 Received: (at 55508-done) by debbugs.gnu.org; 20 May 2022 22:14:28 +0000 Received: from localhost ([127.0.0.1]:40306 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nsAsx-0006TB-9D for submit@debbugs.gnu.org; Fri, 20 May 2022 18:14:28 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54088) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nsAsu-0006Sx-EY for 55508-done@debbugs.gnu.org; Fri, 20 May 2022 18:14:13 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:38604) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nsAsp-0005yA-89; Fri, 20 May 2022 18:14:07 -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=I0H/T7LON1IwRuvXj3vKWTyZotTre4OylnOx4V5sdPQ=; b=Duze+DcDqU1pni25m5Xp r6wFQmfVxiMmXTxyfug+pfVe30hnrLi9/kH1KOTlj+ifl5Hh2Lf+fgneFKGUDaoPGz+KCjbPBtmH9 Nwk01Zu5/NkdJurh8tk4mZvTd5gWW75sLKm1/VMlLnfExGrNhjDwpQ2AFp8q3GWqlbbSsKzpgg+M+ 5D9zOqPFd3KMLqFWd0idugH30JeCnsH3QvR0WYdNEd3jfgBbUPF+zxcE8rituhzIFsX8Q6otYlb6r L8GWgHKHq6A6msuw+6TL7hMcvJX1KnBUjFCa8aFXksEMlhFuI8SBnXbDesB0/eYrINY+mt60z+QbD QTuRZNWxV05kIg==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:54547 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nsAso-0002rU-Rw; Fri, 20 May 2022 18:14:07 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Felix Gruber Subject: Re: bug#55508: [PATCH] gnu: python-geopandas: Fix build. References: <20220518192111.20342-1-felgru@posteo.net> Date: Sat, 21 May 2022 00:14:05 +0200 In-Reply-To: <20220518192111.20342-1-felgru@posteo.net> (Felix Gruber's message of "Wed, 18 May 2022 19:21:11 +0000") Message-ID: <87mtfbvolu.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.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-Debbugs-Envelope-To: 55508-done Cc: 55508-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 (---) Hi, Felix Gruber skribis: > * gnu/packages/geo.scm (python-geopandas)[arguments]: Disable broken > tests. Re-enable test_fillna_no_op_returns_copy which does not fail > anymore. Applied, thanks! Ludo=E2=80=99. From unknown Fri Aug 15 21:26:22 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 18 Jun 2022 11:24:05 +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