From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35677) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1efSBB-0006Xa-PL for guix-patches@gnu.org; Sat, 27 Jan 2018 10:14:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1efSB8-0000rF-JY for guix-patches@gnu.org; Sat, 27 Jan 2018 10:14:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:37465) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1efSB8-0000r8-Fc for guix-patches@gnu.org; Sat, 27 Jan 2018 10:14:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1efSB8-0005AF-AL for guix-patches@gnu.org; Sat, 27 Jan 2018 10:14:02 -0500 Subject: [bug#30267] [PATCH] gnu: python-dateutil: Update to 2.6.1. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35597) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1efSAe-0006Q7-9r for guix-patches@gnu.org; Sat, 27 Jan 2018 10:13:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1efSAb-0000fY-5q for guix-patches@gnu.org; Sat, 27 Jan 2018 10:13:32 -0500 Received: from mail-pf0-x22d.google.com ([2607:f8b0:400e:c00::22d]:39888) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1efSAa-0000f6-Tr for guix-patches@gnu.org; Sat, 27 Jan 2018 10:13:29 -0500 Received: by mail-pf0-x22d.google.com with SMTP id e11so1876994pff.6 for ; Sat, 27 Jan 2018 07:13:28 -0800 (PST) From: Alex Vong Date: Sat, 27 Jan 2018 23:12:59 +0800 Message-ID: <874ln7tjwk.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 30267@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi, This patch updates python-dateutil to its latest version. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-python-dateutil-Update-to-2.6.1.patch >From d631ee375ccb052440997ea681c0e2ef4781d259 Mon Sep 17 00:00:00 2001 From: Alex Vong Date: Sat, 27 Jan 2018 22:58:58 +0800 Subject: [PATCH] gnu: python-dateutil: Update to 2.6.1. * gnu/packages/python.scm (python-dateutil, python2-dateutil): Update to 2.6.1. --- gnu/packages/time.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 20c27e420..ce57e27b6 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -142,14 +142,14 @@ Pendulum instances.") (define-public python-dateutil (package (name "python-dateutil") - (version "2.6.0") + (version "2.6.1") (source (origin (method url-fetch) (uri (pypi-uri "python-dateutil" version)) (sha256 (base32 - "1lhq0hxjc3cfha101q02ld5ijlpfyjn2w1yh7wvpiy367pgzi8k2")))) + "1jkahssf0ir5ssxc3ydbp8cpv77limn8d4s77szb2nrgl2r3h749")))) (build-system python-build-system) (propagated-inputs `(("python-six" ,python-six))) -- 2.15.1 --=-=-= Content-Type: text/plain Cheers, Alex --=-=-=--