summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-04-28 05:33:23 -0400
committerNed Batchelder <ned@nedbatchelder.com>2023-04-28 05:33:23 -0400
commit1f5beeb706696f91955b68723fd8b8ffc7570f3c (patch)
tree1341028d46ab2d72cb2bc94ecb7ac0417db05cd9
parentee6506f08e5de7e568751f78e8be82fc2a102ffe (diff)
downloadpython-coveragepy-git-1f5beeb706696f91955b68723fd8b8ffc7570f3c.tar.gz
docs: prep for 7.2.4
-rw-r--r--CHANGES.rst11
-rw-r--r--coverage/version.py4
-rw-r--r--doc/conf.py6
-rw-r--r--tox.ini2
4 files changed, 14 insertions, 9 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 377cabc1..22ff98df 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -17,8 +17,14 @@ development at the same time, such as 4.5.x and 5.0.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
-Unreleased
-----------
+.. scriv-start-here
+
+.. _changes_7-2-4:
+
+Version 7.2.4 — 2023-04-28
+--------------------------
+
+PyCon 2023 sprint fixes!
- Fix: with ``relative_files = true``, specifying a specific file to include or
omit wouldn't work correctly (`issue 1604`_). This is now fixed, with
@@ -45,7 +51,6 @@ Unreleased
.. _pull 1610: https://github.com/nedbat/coveragepy/pull/1610
.. _pull 1613: https://github.com/nedbat/coveragepy/pull/1613
-.. scriv-start-here
.. _changes_7-2-3:
diff --git a/coverage/version.py b/coverage/version.py
index d9f10f4c..d878ebc1 100644
--- a/coverage/version.py
+++ b/coverage/version.py
@@ -8,8 +8,8 @@ from __future__ import annotations
# version_info: same semantics as sys.version_info.
# _dev: the .devN suffix if any.
-version_info = (7, 2, 4, "alpha", 0)
-_dev = 1
+version_info = (7, 2, 4, "final", 0)
+_dev = 0
def _make_version(
diff --git a/doc/conf.py b/doc/conf.py
index f6310b57..f0b2d6e4 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -66,11 +66,11 @@ project = 'Coverage.py'
# @@@ editable
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
-version = "7.2.3"
+version = "7.2.4"
# The full version, including alpha/beta/rc tags.
-release = "7.2.3"
+release = "7.2.4"
# The date of release, in "monthname day, year" format.
-release_date = "April 6, 2023"
+release_date = "April 28, 2023"
# @@@ end
rst_epilog = """
diff --git a/tox.ini b/tox.ini
index ebc99816..e5a9db8c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -66,7 +66,7 @@ commands =
- sphinx-build -b html -b linkcheck -aEnQW doc doc/_build/html
[testenv:lint]
-# PYVERSIONS
+# Minimum of PYVERSIONS
basepython = python3.7
deps =
-r requirements/lint.pip