From 0da0bc77200efe133f017333f9815546960b7dc3 Mon Sep 17 00:00:00 2001 From: James Addison Date: Sun, 1 Jan 2023 15:40:50 +0000 Subject: [PATCH 1/2] Add breaking-change documentation about empty 'install_command' values in tox4 --- docs/changelog/2695.doc.rst | 1 + docs/faq.rst | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 docs/changelog/2695.doc.rst diff --git a/docs/changelog/2695.doc.rst b/docs/changelog/2695.doc.rst new file mode 100644 index 000000000..9d0433fe0 --- /dev/null +++ b/docs/changelog/2695.doc.rst @@ -0,0 +1 @@ +Add breaking-change documentation for empty ``install_command`` values diff --git a/docs/faq.rst b/docs/faq.rst index 506c595a6..b4ae18791 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -48,6 +48,9 @@ tox 4 - changed INI rules this worked in tox 3, it was never supported officially. Additionally, in the context of a new virtual environment this flag makes no sense anyway. +- tox 4 requires the ``install_command`` to evaluate to a non-empty value for each target environment. In tox 3, an + empty value would be substituted for the default install command. + tox 4 - known regressions +++++++++++++++++++++++++ From 8109bbf8d77ffbadf8037e45276c8903e0359476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Mon, 2 Jan 2023 08:11:45 -0800 Subject: [PATCH 2/2] PR feedback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bernát Gábor --- docs/changelog/2695.doc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog/2695.doc.rst b/docs/changelog/2695.doc.rst index 9d0433fe0..3f0b3f1e1 100644 --- a/docs/changelog/2695.doc.rst +++ b/docs/changelog/2695.doc.rst @@ -1 +1 @@ -Add breaking-change documentation for empty ``install_command`` values +Add breaking-change documentation for empty ``install_command`` values - by :user:`jayaddison`.