summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-02-08 17:43:28 -0500
committerNed Batchelder <ned@nedbatchelder.com>2015-02-08 17:43:28 -0500
commitddab465a5d92619450314fc98214198db38168e6 (patch)
tree4e9b8b8b5fa09749f85ea9e621e654b8a2b26517
parentf22c360d62956a83d347c2a2161bba98d4c2bd4b (diff)
downloadpython-coveragepy-git-ddab465a5d92619450314fc98214198db38168e6.tar.gz
CPython 3.5.0a1 was announced 40 minutes ago. Isn't it time coverage.py supported it?
-rw-r--r--CHANGES.txt2
-rw-r--r--setup.py2
-rw-r--r--tox.ini8
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 728e7341..00ad1a3f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -8,6 +8,8 @@ Latest
- Plugin support is now implemented in the C tracer and the Python tracer.
+- Added 3.5.0a1 to the list of supported versions.
+
- Wildly experimental: support for measuring processes started by the
multiprocessing module. To use, set ``--concurrency=multiprocessing``,
either on the command line or in the .coveragerc file (`issue 117`_). Thanks,
diff --git a/setup.py b/setup.py
index 3760f9ba..5ba95f98 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ 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.3, or 3.4, PyPy 2.4, and PyPy3 2.4.
+Coverage.py runs on CPython 2.6, 2.7, 3.3, 3.4 or 3.5, 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
diff --git a/tox.ini b/tox.ini
index 0a76c318..ef380e12 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
-envlist = py26, py27, py33, py34, pypy24, pypy3_24
+envlist = py26, py27, py33, py34, py35, pypy24, pypy3_24
[testenv]
commands =
@@ -28,13 +28,17 @@ deps =
py26: unittest2
py26,py27: gevent
py26,py27: eventlet
- py26,py27,py32,py33,py34: greenlet
+ py26,py27,py32,py33,py34,py35: greenlet
setenv =
pypy24,pypy3_24: COVERAGE_NO_EXTENSION=no C extensions under PyPy
usedevelop = True
+[testenv:py35]
+# Just until tox learns with 35 means.
+basepython = python3.5
+
[testenv:pypy24]
basepython = pypy2.4