Skip to content
Snippets Groups Projects
Commit 6510a2be authored by Amir Rachum's avatar Amir Rachum Committed by GitHub
Browse files

Merge pull request #270 from jonafato/python3.6

Declare Python 3.6 support
parents fa7b08c2 b7cc70a2
No related branches found
No related tags found
No related merge requests found
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
sphinxcontrib-issuetracker
sphinx_rtd_theme
# Pinned to 1.6.2 due to a bug in 1.6.3. See GitHub PR #270 for details.
# TODO: remove this restriction once 1.6.4 or later is released.
sphinx==1.6.2
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment