From 8f4388f3a28aa24082a77ac67c354de7541c8e98 Mon Sep 17 00:00:00 2001 From: konstantin Date: Tue, 4 Nov 2025 19:02:15 +0100 Subject: [PATCH 1/2] chore: default to Python 3.14 in Tox.ini --- tox.ini | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 0bcefc5..05ce083 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - tests-py{39,310,311,312} + tests-py{310,311,312,313,314} linting coverage type_check @@ -31,7 +31,7 @@ commands = [testenv:linting] # the linting environment is called by the Github Action that runs the linter deps = - {[testenv:tests-py312]deps} + {[testenv:tests-py314]deps} .[linting] # add your fixtures like e.g. pytest_datafiles here setenv = PYTHONPATH = {toxinidir}/src @@ -44,7 +44,7 @@ commands = # the type_check environment checks the type hints using mypy setenv = PYTHONPATH = {toxinidir}/src deps = - {[testenv:tests-py312]deps} + {[testenv:tests-py314]deps} .[type_check] commands = mypy --show-error-codes src/generics @@ -55,7 +55,7 @@ commands = # the coverage environment is called by the Github Action that runs the coverage measurement changedir = unittests deps = - {[testenv:tests-py312]deps} + {[testenv:tests-py314]deps} .[coverage] setenv = PYTHONPATH = {toxinidir}/src commands = @@ -67,7 +67,7 @@ commands = [testenv:dev] # the dev environment contains everything you need to start developing on your local machine. deps = - {[testenv:tests-py312]deps} + {[testenv:tests-py314]deps} {[testenv:linting]deps} {[testenv:type_check]deps} {[testenv:coverage]deps} From 7d601151af161941b07c37f0f47f705e2454fbc7 Mon Sep 17 00:00:00 2001 From: konstantin Date: Tue, 4 Nov 2025 19:03:53 +0100 Subject: [PATCH 2/2] tox.ini aktualisieren --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 05ce083..3accf96 100644 --- a/tox.ini +++ b/tox.ini @@ -10,7 +10,7 @@ skipsdist = True [testenv] commands = python -m pip install --upgrade pip -[testenv:tests-py{312,313}] +[testenv:tests-py{312,313,314}] # the tests environment is called by the Github action that runs the unit tests deps = -r requirements.txt