From 8bc70be985ddaf8f8b290772bbf5e1c8aa0acc8a Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Fri, 8 Dec 2023 16:21:17 -0800 Subject: [PATCH] Fix style target using sitepackages We don't need to use sitepackages for that, which also prevents installing flake8 in there if it's already site installed. We also don't need future in there. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 5b055b0d..6705f31e 100644 --- a/tox.ini +++ b/tox.ini @@ -18,9 +18,9 @@ allowlist_externals = bash deps = future [testenv:style] +sitepackages = False deps = pep8 - future flake8 commands = python ./tools/cpep8.py {posargs}