summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-01-14 20:23:12 -0500
committerNed Batchelder <ned@nedbatchelder.com>2015-01-14 20:23:12 -0500
commit2cc18104451b2ad53329fa8decb65459037a864a (patch)
treed4837c48f36490db868d142bf47e814345feaad5
parent5a4e07d33c58ec55fbbde30716410f628426cd45 (diff)
downloadpython-coveragepy-git-2cc18104451b2ad53329fa8decb65459037a864a.tar.gz
Update for 4.0a2
-rw-r--r--CHANGES.txt4
-rw-r--r--setup.py5
2 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index deb17fb0..fdab08f8 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,8 +3,8 @@ Change history for Coverage.py
------------------------------
-Latest
-------
+Version 4.0a2 --- 14 January 2014
+---------------------------------
- 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.
diff --git a/setup.py b/setup.py
index 7a7e245b..4f2c49b3 100644
--- a/setup.py
+++ b/setup.py
@@ -6,14 +6,15 @@ Coverage.py measures code coverage, typically during test execution. It uses
the code analysis tools and tracing hooks provided in the Python standard
library to determine which lines are executable, and which have been executed.
-Coverage.py runs on CPython 2.6, 2.7, 3.2, 3.3, or 3.4, and PyPy 2.2.
+Coverage.py runs on CPython 2.6, 2.7, 3.3, or 3.4, PyPy 2.4, and PyPy3 2.4.
Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue
tracker are on `Bitbucket <http://bitbucket.org/ned/coveragepy>`_, with a
mirrored repo on `GitHub <https://github.com/nedbat/coveragepy>`_.
New in 4.0 alpha: ``--concurrency``, dropped support for older Pythons,
-setup.cfg support.
+setup.cfg support, plugins for other file variants, --skip-covered, HTML
+filtering.
New in 3.7: ``--debug``, and 12 bugs closed.