From 0b8c054dc12e0cabfd7f1aebbfb4181a572ad598 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 21 Jul 2015 10:21:48 +0200 Subject: [PATCH] tox: Update pep257 to 0.6.0 Upstream changelog: New Features * Added support for more flexible error selections using --ignore, --select, --convention, --add-ignore and --add-select (#96, #123). Bug Fixes * Property setter and deleter methods are now treated as private and do not require docstrings separate from the main property method (#69, #107). * Fixed an issue where pep257 did not accept docstrings that are both unicode and raw in Python 2.x (#116, #119). * Fixed an issue where Python 3.x files with Unicode encodings were not read correctly (#118). --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a68c07fa8..79aae1f34 100644 --- a/tox.ini +++ b/tox.ini @@ -77,7 +77,7 @@ commands = [testenv:pep257] skip_install = true -deps = pep257==0.5.0 +deps = pep257==0.6.0 passenv = PYTHON LANG # Disabled checks: # D102: Docstring missing, will be handled by others