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

Commit 511b2c3

Browse files
authored
Merge pull request #223 from Nurdok/feature/drop-pypy3
Drop pypy3 (temporarily)
2 parents dc797d4 + 17892e0 commit 511b2c3

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ docs/_*
4343

4444
# virtualenv
4545
venv/
46+
.venvs/
4647

4748
# generated rst
4849
docs/snippets/error_code_table.rst

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,5 @@ matrix:
1919
env: TOXENV=py35
2020
- python: pypy
2121
env: TOXENV=pypy
22-
- python: pypy3
23-
env: TOXENV=pypy3
2422
- python: 2.7
2523
env: TOXENV=docs

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ docstring conventions.
1010
`PEP 257 <http://www.python.org/dev/peps/pep-0257/>`_ out of the box, but it
1111
should not be considered a reference implementation.
1212

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

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

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ docstring conventions.
88
`PEP 257 <http://www.python.org/dev/peps/pep-0257/>`_ out of the box, but it
99
should not be considered a reference implementation.
1010

11-
**pydocstyle** supports Python 2.7, 3.3, 3.4, 3.5, pypy and pypy3.
11+
**pydocstyle** supports Python 2.7, 3.3, 3.4, 3.5 and pypy.
1212

1313

1414
.. include:: quickstart.rst

docs/release_notes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Current Development Version
1010
Major Updates
1111

1212
* Support for Python 2.6 has been dropped (#206, #217).
13+
* Support for PyPy3 2.6 has been temporarily dropped, until it will be
14+
equivalent to CPython 3.3+ (#223).
1315
* Support for the ``pep257`` console script has been dropped. Only the
1416
``pydocstyle`` console script should be used (#216, #218).
1517

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 = py27, py33, py34, py35, pypy, pypy3, docs
7+
envlist = py27, py33, py34, py35, pypy, docs
88

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

0 commit comments

Comments
 (0)