From 4f99daf0943d6bfce5fdf667333ef1215263d6d2 Mon Sep 17 00:00:00 2001 From: Corvo <60719165+brothercorvo@users.noreply.github.com> Date: Tue, 10 Jun 2025 16:53:21 -0300 Subject: [PATCH] Update tox to Python 3.10 --- tox.ini | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 92d0d5ec..a89b1027 100644 --- a/tox.ini +++ b/tox.ini @@ -1,15 +1,14 @@ [tox] -envlist = py39 +envlist = py310 skipsdist = True [testenv] +basepython = python3.10 deps = pytest pytest-cov coverage -e . commands = pytest --cov=. --cov-report=xml tests/ - - [tool.coverage.run] -relative_files = true \ No newline at end of file +relative_files = true