summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2023-01-11 07:56:11 -0800
committerBernát Gábor <bgabor8@bloomberg.net>2023-01-11 07:56:11 -0800
commitb8e47ce061b3da43d195e17f1782ee8a012e6f55 (patch)
treeb3885de530c515e37a4fd9e9f1ca3e17d6ad31c4
parent9f89f51bce04817c81ffad8979ac2a9138e0777a (diff)
downloadtox-git-b8e47ce061b3da43d195e17f1782ee8a012e6f55.tar.gz
release 4.2.74.2.7
-rw-r--r--docs/changelog.rst16
-rw-r--r--docs/changelog/2838.bugfix.rst2
-rw-r--r--docs/changelog/2843.bugfix.rst1
-rw-r--r--docs/changelog/2848.bugfix.rst6
4 files changed, 16 insertions, 9 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 3a703614..7fe1335b 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,6 +4,22 @@ Release History
.. towncrier release notes start
+v4.2.7 (2023-01-11)
+-------------------
+
+Bugfixes - 4.2.7
+~~~~~~~~~~~~~~~~
+- A testenv with multiple factors, one of which conflicts with a ``base_python`` setting in ``tox.ini``, will now use the
+ correct Python interpreter version - by :user:`stephenfin`. (:issue:`2838`)
+- Explicitly list ``wheel`` as requirement for the tests, as some of the tests error without it. (:issue:`2843`)
+- tox has reverted support for Python factors that include PATCH release info (e.g. ``py3.10.1``), build architecture
+ (e.g. ``pypy3-64``) or do not define a ``py`` prefix or other supported prefix (e.g. ``3.10``). These complex factors
+ were initially supported with the release of tox 4.0 but has proven complicated to support. Instead, the simple factors
+ supported by tox 3 e.g. (``py310``, ``pypy3``) or period-separated equivalent (``py3.10``) introduced in tox 4 should be
+ used. Users who wish to specify more specific Python version information should configure the :ref:`base_python` setting
+ - by :user:`stephenfin`. (:issue:`2848`)
+
+
v4.2.6 (2023-01-06)
-------------------
diff --git a/docs/changelog/2838.bugfix.rst b/docs/changelog/2838.bugfix.rst
deleted file mode 100644
index 39120a7a..00000000
--- a/docs/changelog/2838.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-A testenv with multiple factors, one of which conflicts with a ``base_python`` setting in ``tox.ini``, will now use the
-correct Python interpreter version - by :user:`stephenfin`.
diff --git a/docs/changelog/2843.bugfix.rst b/docs/changelog/2843.bugfix.rst
deleted file mode 100644
index b068f343..00000000
--- a/docs/changelog/2843.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Explicitly list ``wheel`` as requirement for the tests, as some of the tests error without it.
diff --git a/docs/changelog/2848.bugfix.rst b/docs/changelog/2848.bugfix.rst
deleted file mode 100644
index 9220c483..00000000
--- a/docs/changelog/2848.bugfix.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-tox has reverted support for Python factors that include PATCH release info (e.g. ``py3.10.1``), build architecture
-(e.g. ``pypy3-64``) or do not define a ``py`` prefix or other supported prefix (e.g. ``3.10``). These complex factors
-were initially supported with the release of tox 4.0 but has proven complicated to support. Instead, the simple factors
-supported by tox 3 e.g. (``py310``, ``pypy3``) or period-separated equivalent (``py3.10``) introduced in tox 4 should be
-used. Users who wish to specify more specific Python version information should configure the :ref:`base_python` setting
-- by :user:`stephenfin`.