From b8525668701d4687dbc4bf34d18fe8f558e4f134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sat, 17 Jan 2026 11:49:24 +0100 Subject: [PATCH] CI: Drop Python 3.8, add 3.14 As we use the fedora-python/tox-github-action@main, it was updated to Fedora 42 which no longer has Python 3.8. https://fedoraproject.org/wiki/Changes/RetirePython3.8 --- .github/workflows/main.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 12aab80..df2ef76 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,12 +22,12 @@ jobs: strategy: matrix: tox_env: - - py38 - py39 - py310 - py311 - py312 - py313 + - py314 - mypy # Use GitHub's Linux Docker host diff --git a/tox.ini b/tox.ini index 4544ea0..1dae795 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38,py39,py310,py311,py312,py313,mypy +envlist = py39,py310,py311,py312,py313,py314,mypy skipsdist = True [testenv]