Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit 7b94755

Browse files
committed
Merge pull request #145 from Nurdok/py35
Added Python 3.5 support
2 parents 7346038 + f4556a5 commit 7b94755

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@
55

66
sudo: false
77
language: python
8-
install: pip install tox --use-mirrors
8+
install: pip install tox
99
script: tox
10+
python:
11+
- 3.5

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ custom checks can be easily added, for example to cover
1010
NumPy `docstring conventions
1111
<https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt>`_.
1212

13-
**pep257** supports Python 2.6, 2.7, 3.2, 3.3, 3.4, pypy and pypy3.
13+
**pep257** supports Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, pypy and pypy3.
1414

1515
Quick Start
1616
-----------

docs/index.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ pep257's documentation
1010
compliance with Python `PEP 257
1111
<http://www.python.org/dev/peps/pep-0257/>`_.
1212

13+
14+
.. include:: quickstart.rst
15+
16+
1317
Contents:
1418

1519
.. toctree::
@@ -21,8 +25,6 @@ Contents:
2125
license
2226

2327

24-
.. include:: quickstart.rst
25-
2628
Credits
2729
=======
2830

docs/release_notes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Release Notes
55
Current Development Version
66
---------------------------
77

8+
New Features
9+
10+
* Added support for Python 3.5 (#145).
11+
812
Bug Fixes
913

1014
* Fixed an issue where a `NameError` was raised when parsing complex defintions

requirements/tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==2.7.2
1+
pytest==2.7.3
22
pytest-pep8
33
mock

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# install tox" and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py26, py27, py32, py33, py34, pypy, pypy3
7+
envlist = py26, py27, py32, py33, py34, py35, pypy, pypy3
88

99
[testenv]
1010
# Make sure reading the UTF-8 from test.py works regardless of the locale used.

0 commit comments

Comments
 (0)