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
commitc52415c1263bea4864d065d26373547ce2fa7f9e (patch)
tree5792d0e6288cbbe6dee0f07bab114da5d176ee79
parent9571dd02e0638f6f5443a1fd67c9ba6bfb53af78 (diff)
downloadpython-coveragepy-c52415c1263bea4864d065d26373547ce2fa7f9e.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 728e734..00ad1a3 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 3760f9b..5ba95f9 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 0a76c31..ef380e1 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