From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: [PATCH] Update Python to 3.4.4 Date: Mon, 20 Jun 2016 14:18:49 -0500 Message-ID: <87r3bru0rq.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55088) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bF4is-0003kL-CG for guix-devel@gnu.org; Mon, 20 Jun 2016 15:19:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bF4in-0007zl-A9 for guix-devel@gnu.org; Mon, 20 Jun 2016 15:19:01 -0400 Received: from dustycloud.org ([50.116.34.160]:38168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bF4in-0007wK-4b for guix-devel@gnu.org; Mon, 20 Jun 2016 15:18:57 -0400 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id CACCD26674 for ; Mon, 20 Jun 2016 15:18:49 -0400 (EDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel --=-=-= Content-Type: text/plain Hello all! Here's a patch to update Python to the latest version. I can confirm that it builds fine. I'm guessing it needs to go into core-updates though because this probably affects a lot of things? I also intend to look at Diane's work on Python 3.5 to see if I can help move that along. - Chris --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-python-3.4-Update-to-3.4.4.patch >From b41ddd042730895a1ce257943018099c98053eac Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 20 Jun 2016 14:05:20 -0500 Subject: [PATCH] gnu: python-3.4: Update to 3.4.4. * gnu/packages/python.scm (python-3.4): Update to 3.4.4. --- gnu/packages/python.scm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index fa06a12..92535cb 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -271,21 +271,19 @@ data types.") (define-public python-3.4 (package (inherit python-2) - (version "3.4.3") + (version "3.4.4") (source (origin (method url-fetch) (uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz")) (patches (search-patches "python-fix-tests.patch" - ;; XXX Try removing this patch for python > 3.4.3 - "python-disable-ssl-test.patch" "python-3-deterministic-build-info.patch" "python-3-search-paths.patch")) (patch-flags '("-p0")) (sha256 (base32 - "1f4nm4z08sy0kqwisvv95l02crv6dyysdmx44p1mz3bn6csrdcxm")))) + "18kb5c29w04rj4gyz3jngm72sy8izfnbjlm6ajv6rv2m061d75x7")))) (arguments (substitute-keyword-arguments (package-arguments python-2) ((#:tests? _) #t))) (native-search-paths -- 2.8.4 --=-=-=--