From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53770) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCHR0-0007rl-R9 for guix-patches@gnu.org; Sat, 28 Apr 2018 00:26:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCHQw-0001OC-2I for guix-patches@gnu.org; Sat, 28 Apr 2018 00:26:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:33622) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fCHQv-0001Nn-Ui for guix-patches@gnu.org; Sat, 28 Apr 2018 00:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fCHQv-0007B0-Oj for guix-patches@gnu.org; Sat, 28 Apr 2018 00:26:01 -0400 Subject: [bug#31295] [PATCH] gnu: python-autopep8: Update to 1.3.5 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53736) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCHQW-0007pU-O6 for guix-patches@gnu.org; Sat, 28 Apr 2018 00:25:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCHQS-000193-A1 for guix-patches@gnu.org; Sat, 28 Apr 2018 00:25:36 -0400 Received: from mail-oln040092010032.outbound.protection.outlook.com ([40.92.10.32]:45147 helo=NAM04-CO1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fCHQR-00018h-Sx for guix-patches@gnu.org; Sat, 28 Apr 2018 00:25:32 -0400 From: Fis Trivial Date: Sat, 28 Apr 2018 04:25:30 +0000 Message-ID: Content-Language: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 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: 31295@debbugs.gnu.org * gnu/packages/python.scm (python-autopep8): Update to 1.3.5 --- gnu/packages/python.scm | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a5d533b1c..59bade1f0 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3788,28 +3788,28 @@ multivalue dictionary that retains the order of ins= ertions and deletions.") =20 (define-public python-autopep8 (package - (name "python-autopep8") - (version "1.3.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "autopep8" version)) - (sha256 - (base32 - "1p9pa1ffg4iy96l918808jggg9a69iaka5awmj8xid36yc5mk0ky")))) - (build-system python-build-system) - (propagated-inputs - `(("python-pycodestyle" ,python-pycodestyle))) - (home-page "https://github.com/hhatto/autopep8") - (synopsis "Format Python code according to the PEP 8 style guide") - (description - "@code{autopep8} automatically formats Python code to conform to + (name "python-autopep8") + (version "1.3.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "autopep8" version)) + (sha256 + (base32 + "192bvhzi4d0claqxgzymvv7k3qnj627742bc8sgxpzjj42pd9112")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pycodestyle" ,python-pycodestyle))) + (home-page "https://github.com/hhatto/autopep8") + (synopsis "Format Python code according to the PEP 8 style guide") + (description + "@code{autopep8} automatically formats Python code to conform to the PEP 8 style guide. It uses the pycodestyle utility to determine what parts of the code needs to be formatted. @code{autopep8} is capable of fixing most of the formatting issues that can be reported by pycodestyle.") - (license (license:non-copyleft - "https://github.com/hhatto/autopep8/blob/master/LICENSE")))) + (license (license:non-copyleft + "https://github.com/hhatto/autopep8/blob/master/LICENSE")))) =20 (define-public python2-autopep8 (package-with-python2 python-autopep8)) --=20 2.14.3