diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-06 10:46:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-06 10:46:14 -0400 |
commit | d62fbd378dde67612546076c8c804dfdb595a15e (patch) | |
tree | c31c7caf79c8480252c497b985a3334493c4c044 | |
parent | 04ff188349df84f73167108314e9698059830279 (diff) | |
download | python-coveragepy-git-d62fbd378dde67612546076c8c804dfdb595a15e.tar.gz |
Add words about 3.8
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | doc/index.rst | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index b449797b..f38ffbac 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -41,6 +41,12 @@ Unreleased .. _issue 170: https://github.com/nedbat/coveragepy/issues/170 +- Tentative support for Python 3.8, which has not yet released an alpha. Fixes + `issue 707` and `issue 714`_. + +.. _issue 707: https://github.com/nedbat/coveragepy/issues/707 +.. _issue 714: https://github.com/nedbat/coveragepy/issues/714 + - Environment variable substitution in configuration files now supports two syntaxes for controlling the behavior of undefined variables: if ``VARNAME`` is not defined, ``${VARNAME?}`` will raise an error, and ``${VARNAME-default @@ -35,7 +35,7 @@ library to determine which lines are executable, and which have been executed. Coverage.py runs on many versions of Python: * CPython 2.7. -* CPython 3.4 through 3.7. +* CPython 3.4 through 3.8. * PyPy2 6.0 and PyPy3 6.0. * Jython 2.7.1, though not for reporting. * IronPython 2.7.7, though not for reporting. diff --git a/doc/index.rst b/doc/index.rst index fc9f31c1..4aa7ee3c 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -80,7 +80,7 @@ not. The latest version is coverage.py 5.0a2, released September 3rd 2018. It is supported on: - * Python versions 2.7, 3.4, 3.5, 3.6, and 3.7. + * Python versions 2.7, 3.4, 3.5, 3.6, 3.7, and pre-alpha 3.8. * PyPy2 6.0 and PyPy3 6.0. |