Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pycqa/pydocstyle
1 result
Show changes
Commits on Source (3)
Loading
Loading
@@ -17,6 +17,8 @@ matrix:
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: pypy
env: TOXENV=pypy
- python: 2.7
Loading
Loading
Loading
Loading
@@ -10,7 +10,7 @@ docstring conventions.
`PEP 257 <http://www.python.org/dev/peps/pep-0257/>`_ out of the box, but it
should not be considered a reference implementation.
 
**pydocstyle** supports Python 2.7, 3.3, 3.4, 3.5 and pypy.
**pydocstyle** supports Python 2.7, 3.3, 3.4, 3.5, 3.6 and pypy.
 
Quick Start
-----------
Loading
Loading
Loading
Loading
@@ -12,6 +12,7 @@ New Features
 
* Public nested classes missing a docstring are now reported as D106 instead
of D101 (#198, #261).
* Added support for Python 3.6 (#270).
 
Bug Fixes
 
Loading
Loading
Loading
Loading
@@ -4,7 +4,7 @@
# install tox" and then run "tox" from this directory.
 
[tox]
envlist = py27, py33, py34, py35, pypy, docs
envlist = py27, py33, py34, py35, py36, pypy, docs
 
[testenv]
# Make sure reading the UTF-8 from test.py works regardless of the locale used.
Loading
Loading