From 183d03f3bc2bb29eb8dce9c78df1fbe4ff7e36ef Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Thu, 24 Oct 2024 14:21:22 +0100 Subject: [PATCH] Make tox configuration more flexible Ensures newer versions of tox is used and avoid direct uses of pip as would not work with alternative installers like uv (which can be activated using tox-uv). --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6ec9b41..e6b83a9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,9 @@ [tox] # These should match the GitHub Actions env list envlist = py37,py38,py39,py310,py311,py312,py313 +minversion = 4.0.0 [testenv] -install_command = pip install {opts} {packages} deps = -rrequirements-dev.txt setenv = LANG=en_US.UTF-8