From 3eca0d8713716cdde49443e77b3aa790f3020f70 Mon Sep 17 00:00:00 2001 From: likui Date: Wed, 2 Aug 2023 16:49:42 +0800 Subject: [PATCH] tox: Remove basepython Python 2 is EOL. No environment should be defaulting to it. Our CI environments certainly aren't. Change-Id: I7b59edcb2e258b774bc71ad8e9873653d3e0b9a4 --- tox.ini | 2 -- 1 file changed, 2 deletions(-) diff --git a/tox.ini b/tox.ini index 1a6f89024a..09a96b957e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,9 @@ [tox] minversion = 3.18.0 envlist = py3,pep8 -ignore_basepython_conflict=true [testenv] usedevelop = True -basepython = python3 setenv = VIRTUAL_ENV={envdir} PYTHONDONTWRITEBYTECODE=1 LANGUAGE=en_US