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).
This commit is contained in:
Florian Bruhin 2015-07-21 10:21:48 +02:00
parent d942325c51
commit 0b8c054dc1

View File

@ -77,7 +77,7 @@ commands =
[testenv:pep257] [testenv:pep257]
skip_install = true skip_install = true
deps = pep257==0.5.0 deps = pep257==0.6.0
passenv = PYTHON LANG passenv = PYTHON LANG
# Disabled checks: # Disabled checks:
# D102: Docstring missing, will be handled by others # D102: Docstring missing, will be handled by others