From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58383) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKAHV-00058N-Gy for guix-patches@gnu.org; Tue, 06 Nov 2018 17:57:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKAHO-0006OQ-Fb for guix-patches@gnu.org; Tue, 06 Nov 2018 17:57:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33686) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gKAHO-0006NC-4I for guix-patches@gnu.org; Tue, 06 Nov 2018 17:57:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gKAHO-0003Jt-1N for guix-patches@gnu.org; Tue, 06 Nov 2018 17:57:02 -0500 Subject: [bug#33296] [PATCH] python-ilinkedlist 0.3.1 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKAGP-000553-46 for guix-patches@gnu.org; Tue, 06 Nov 2018 17:56:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKAGL-0002Hp-GV for guix-patches@gnu.org; Tue, 06 Nov 2018 17:56:00 -0500 Received: from mail-yw1-xc2a.google.com ([2607:f8b0:4864:20::c2a]:39348) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gKAGK-0006mf-Nd for guix-patches@gnu.org; Tue, 06 Nov 2018 17:55:57 -0500 Received: by mail-yw1-xc2a.google.com with SMTP id v8-v6so4273800ywh.6 for ; Tue, 06 Nov 2018 14:55:10 -0800 (PST) Received: from localhost (50-243-201-195-static.hfc.comcastbusiness.net. [50.243.201.195]) by smtp.gmail.com with ESMTPSA id m16-v6sm25441548ywh.18.2018.11.06.14.55.09 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 06 Nov 2018 14:55:09 -0800 (PST) Date: Tue, 6 Nov 2018 17:54:42 -0500 From: Luther Thompson Message-ID: <20181106175442.6103c228@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/22ZAwieG3yxti0bf7g6utbg" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33296@debbugs.gnu.org --MP_/22ZAwieG3yxti0bf7g6utbg Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Yet another update to my Python module. Luther --MP_/22ZAwieG3yxti0bf7g6utbg Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-python-Update-python-ilinkedlist-to-0.3.1.patch >From 62337dc9a6161b42707a1b6b3590413bcd149559 Mon Sep 17 00:00:00 2001 From: Luther Thompson Date: Tue, 6 Nov 2018 17:40:51 -0500 Subject: [PATCH] gnu: python: Update python-ilinkedlist to 0.3.1. * gnu/packages/python.scm (python-ilinkedlist): Update to 0.3.1. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 54ea0caac..a33eac3ee 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14512,14 +14512,14 @@ run on top of the dynamic task schedulers. ") (define-public python-ilinkedlist (package (name "python-ilinkedlist") - (version "0.2.0") + (version "0.3.1") (source (origin (method url-fetch) (uri (pypi-uri "ilinkedlist" version)) (sha256 (base32 - "0klb846q5vs62d8f89my7wan1sji4yjj6pjhjch9dha3p8vlncd2")))) + "04wpv7km8jggrngc4bjg3nm615czd3bjdvpsy2icg6c1c8162zyg")))) (build-system python-build-system) (native-inputs `(("python-pytest" ,python-pytest))) (inputs `(("python" ,python))) -- 2.19.1 --MP_/22ZAwieG3yxti0bf7g6utbg--