diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2017-09-08 23:58:22 +0200 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2017-10-03 00:04:30 +0200 |
commit | 8e483fb540dc636c2f00efcda338b0a7d3f6dcdc (patch) | |
tree | ad15e37a6bb1231dcb694570cd40f2679db3130b /gnu | |
parent | ab7f51fa344c757fd2825ce1fff7d6c587d1b609 (diff) | |
download | guix-8e483fb540dc636c2f00efcda338b0a7d3f6dcdc.tar.gz |
gnu: python-autopep8: Update to 1.3.2.
* gnu/packages/python.scm (python-autopep8): Update to 1.3.2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 35a2cec798..b566e906de 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4906,17 +4906,17 @@ SQLAlchemy Database Toolkit for Python.") (define-public python-autopep8 (package (name "python-autopep8") - (version "1.2.4") + (version "1.3.2") (source (origin (method url-fetch) (uri (pypi-uri "autopep8" version)) (sha256 (base32 - "18parm383lfn42a00wklv3qf20p4v277f1x3cn58x019dqk1xqrq")))) + "1p9pa1ffg4iy96l918808jggg9a69iaka5awmj8xid36yc5mk0ky")))) (build-system python-build-system) (propagated-inputs - `(("python-pep8" ,python-pep8))) + `(("python-pycodestyle" ,python-pycodestyle))) (home-page "https://github.com/hhatto/autopep8") (synopsis "Format Python code according to the PEP 8 style guide") (description |