From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: [PATCH 3/8] gnu: python-requests: Update to 2.10.0. Date: Tue, 17 Jan 2017 23:38:43 +0100 Message-ID: <87bmv5b9cc.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> References: <20170117222548.13995-1-dannym@scratchpost.org> <20170117222548.13995-4-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46390) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTcOu-0001Pq-UX for guix-devel@gnu.org; Tue, 17 Jan 2017 17:38:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTcOr-0003xF-L1 for guix-devel@gnu.org; Tue, 17 Jan 2017 17:38:48 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:57906) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTcOr-0003wq-Gk for guix-devel@gnu.org; Tue, 17 Jan 2017 17:38:45 -0500 In-Reply-To: <20170117222548.13995-4-dannym@scratchpost.org> 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: Danny Milosavljevic , guix-devel@gnu.org --=-=-= Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" --==-=-= Content-Type: text/plain Danny Milosavljevic writes: > * gnu/packages/python.scm (python-requests): Update to 2.10.0. Since we're updating this package (and likely face some breakage), why not go with the latest version (2.12.4)? Patch attached! --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlh+nPMACgkQoqBt8qM6 VPrIRAf/T6re4hwIJgXZlEwNr7LUen6/KYFNbDtB4QLYm+nOj0b8253DMq30Q5t/ m4RkT9T/EeMEbWQ6nKSV2vcvePtP767h/uZP3FUKKvW81Y52kncbwnbDBbrbvutc mt66xOPpaW7UWh7r0k2SR6GOMS0vqHZBWuYX3x2cS9+Rgco0vxgO8JkTOJd2JIWK 2L7HNT4QyYWaIMQ+S+4q/SxxSiyL2QiycSQOpshgu1wReevK7hNBO6OenBXDbo8L CG5uDXgpQ74cmyI/1NcDwKfIrqp645r0D0SjtcKz4LoCeDsfCAwGtu6JrnPXtHzi NXD1tGkOFozrEFMEvdO/0EWyGrrjVg== =h7IZ -----END PGP SIGNATURE----- --==-=-=-- --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-python-requests-Update-to-2.12.4.patch >From b4198062f279db27b186930a54ffaacef2042761 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 17 Jan 2017 21:56:31 +0100 Subject: [PATCH] gnu: python-requests: Update to 2.12.4. * gnu/packages/python.scm (python-requests, python2-requests): Update to 2.12.4. --- 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 6518006aa..7f72ed13d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2467,13 +2467,13 @@ installed with a newer @code{pip} or with wheel's own command line utility.") (define-public python-requests (package (name "python-requests") - (version "2.9.1") + (version "2.12.4") (source (origin (method url-fetch) (uri (pypi-uri "requests" version)) (sha256 (base32 - "0zsqrzlybf25xscgi7ja4s48y2abf9wvjkn47wh984qgs1fq2xy5")))) + "0d5fwxmw4ibynk3imph3n4n84m0n3ib1vj339fxhkqri0qd4767d")))) ;; TODO: unbundle urllib3 and chardet. (build-system python-build-system) (arguments -- 2.11.0 --=-=-=--