From 20bc0873e663f7b733be76a74a62e2251ebfaa4a Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont <nicolas@dandrimont.eu> Date: Thu, 8 Jun 2023 13:53:46 +0200 Subject: [PATCH] tox.ini: use minversion instead of requires This allows using the "system" tox, if it's recent enough, instead of always provisioning an internal .tox venv with tox 4. --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 2e7a613f..15d0702f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,5 @@ [tox] -requires = - tox>4 +minversion=4 envlist=black,flake8,mypy,py3-{minimal,full-cover} [testenv] -- GitLab