From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1efSaN-0006dZ-1J for guix-patches@gnu.org; Sat, 27 Jan 2018 10:40:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1efSaI-0000Aw-4W for guix-patches@gnu.org; Sat, 27 Jan 2018 10:40:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:37516) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1efSaH-0000Ac-Vl for guix-patches@gnu.org; Sat, 27 Jan 2018 10:40:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1efSaH-0005u6-Ln for guix-patches@gnu.org; Sat, 27 Jan 2018 10:40:01 -0500 Subject: [bug#30267] [PATCH] gnu: python-dateutil: Update to 2.6.1. References: <874ln7tjwk.fsf@gmail.com> In-Reply-To: <874ln7tjwk.fsf@gmail.com> Resent-Message-ID: From: Alex Vong Date: Sat, 27 Jan 2018 23:39:44 +0800 Message-ID: <87r2qbs43j.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 Ah, I forget the copyright header. --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-python-dateutil-Update-to-2.6.1.patch Content-Transfer-Encoding: quoted-printable >From bf461a77cbf25aae730412c883f8f1b6b84ea2ad 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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 20c27e420..a54524087 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -13,6 +13,7 @@ ;;; Copyright =C2=A9 2017 Ben Woodcroft ;;; Copyright =C2=A9 2017 ng0 ;;; Copyright =C2=A9 2017 Julien Lepiller +;;; Copyright =C2=A9 2018 Alex Vong ;;; ;;; This file is part of GNU Guix. ;;; @@ -142,14 +143,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))) --=20 2.15.1 --=-=-=--