From e7b7074c9306dcd7b07f049ad04638f0aeffd8e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Osvaldo?= Date: Fri, 3 Jan 2025 16:31:47 -0300 Subject: [PATCH] fix: Updated 'tox' python configuration to compatible version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated tox to Python version 3.10 due the following packages: · aggdraw, requires Python >= 3.7 · networkx, requires Python >= 3.8 · Many conflicts in Python 3.9 Signed-off-by: Álvaro Osvaldo --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index b422f1fac..32c8b8eb9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36 +envlist = py310 skipsdist = True [testenv] @@ -11,7 +11,7 @@ commands = [testenv:flake8] deps = flake8 -basepython = python3.6 +basepython = python3.10 commands = flake8 . [coverage:run]