From b30ca7fbbc51338f928189fd8b8a58be696f5a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Svetozar=20=C5=BDiki=C4=87?= Date: Wed, 6 May 2026 09:01:56 -0400 Subject: [PATCH 1/2] Remove unsupported python versions --- tox.ini | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tox.ini b/tox.ini index e75f4f4..068de96 100644 --- a/tox.ini +++ b/tox.ini @@ -1,30 +1,18 @@ [tox] isolated_build = True envlist = - py38 - py39 - py310 - py311 py312 ruff coverage [gh-actions] python = - 3.8: py38 - 3.9: py39 - 3.10: py310 - 3.11: py311 3.12: py312, ruff [testenv] setenv = PYTHONDONTWRITEBYTECODE=1 basepython = - py38: python3.8 - py39: python3.9 - py310: python3.10 - py311: python3.11 py312: python3.12 .package: python3 allowlist_externals = poetry From 220e48e8092d1872729010c37d1933366a990d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Svetozar=20=C5=BDiki=C4=87?= Date: Wed, 6 May 2026 13:38:30 -0400 Subject: [PATCH 2/2] Update gitactions --- .github/workflows/cicd.yml | 2 +- tox.ini | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 99e175d..e863c9d 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 068de96..fa0e2bb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,18 +1,21 @@ [tox] isolated_build = True envlist = + py311 py312 ruff coverage [gh-actions] python = + 3.11: py311 3.12: py312, ruff [testenv] setenv = PYTHONDONTWRITEBYTECODE=1 basepython = + py311: python3.11 py312: python3.12 .package: python3 allowlist_externals = poetry