diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-13 10:29:26 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-13 10:29:26 -0500 |
| commit | 6bc2fa2b83884f8828afcca0c7f370ef1e87cd64 (patch) | |
| tree | 5cbb6c0651acae988b761d47c6b4e0f44c68b48a | |
| parent | 879e1932da2ff38d9c56ee6f85c52615f909e6ee (diff) | |
| download | python-coveragepy-6bc2fa2b83884f8828afcca0c7f370ef1e87cd64.tar.gz | |
Keep support for only the latest PyPy's.
PyPy3 2.3 threw some weird internal error, and it implements the same
version of Python as PyPy3 2.4, so why bother?
| -rw-r--r-- | CHANGES.txt | 6 | ||||
| -rw-r--r-- | tox.ini | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 05e01e8..3492839 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,8 +6,10 @@ Change history for Coverage.py Latest ------ -- Officially support PyPy 2.3 and 2.4, and PyPy3 2.3 and 2.4. Drop support for - CPython 3.2. +- Officially support PyPy 2.4, and PyPy3 2.4. Drop support for + CPython 3.2 and older versions of PyPy. The code won't work on CPython 3.2. + It will probably still work on older versions of PyPy, but I'm not testing + against them. - The original command line switches (`-x` to run a program, etc) are no longer supported. @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py26, py27, py33, py34, pypy22, pypy23, pypy24, pypy3_23, pypy3_24 +envlist = py26, py27, py33, py34, pypy24, pypy3_24 [testenv] commands = |
