From c4fb24b326a53484789c310643b4cf780fc83897 Mon Sep 17 00:00:00 2001 From: Jan Remmet Date: Thu, 20 Jul 2023 10:11:01 +0200 Subject: [PATCH] pyproject: remove Python 3.7 from tox envlist tox fails with because we require python >= 3.8 since commit: 6297725 ("drop support for Python 3.7") Signed-off-by: Jan Remmet --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1e1195694..5f3f6f8b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -215,7 +215,7 @@ signature-mutators = ["labgrid.step.step"] [tool.tox] legacy_tox_ini = """ [tox] -envlist = py37, py38, py39, py310, py311 +envlist = py38, py39, py310, py311 isolated_build = true [testenv]