From 5dd20d43ecf93bd0238d0eae4114409062164a4f Mon Sep 17 00:00:00 2001 From: Dhruv Kumar Date: Sun, 14 Dec 2025 03:04:01 +0530 Subject: [PATCH 1/2] Fixed tox.ini python version matrix --- tox.ini | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 05159b07b..bda232766 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, build, flake8, black +envlist = py39, py310, py311, py312, py313, build, flake8, black skipsdist = true skip_missing_interpreters = true isolated_build = true @@ -27,7 +27,7 @@ deps = wheel setuptools commands = - python setup.py -q sdist bdist_wheel + python -m build pip install . pytest --pyargs grid @@ -42,7 +42,7 @@ deps = flake8-colors commands = flake8 --version - flake8 src/grid setup.py + flake8 src/grid [testenv:black] basepython = python3 @@ -71,5 +71,8 @@ omit = */test* [gh] python = - 3.7 = py37, build, flake8, black - 3.8 = py38 + 3.9 = py39, build, flake8, black + 3.10 = py310 + 3.11 = py311 + 3.12 = py312 + 3.13 = py313 From fa95130fb83231f40cbf17d29707fa36d117c03d Mon Sep 17 00:00:00 2001 From: Dhruv Kumar Date: Tue, 16 Dec 2025 06:48:35 +0530 Subject: [PATCH 2/2] Update tox.ini Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index bda232766..c5b9ef51d 100644 --- a/tox.ini +++ b/tox.ini @@ -26,6 +26,7 @@ deps = pytest wheel setuptools + build commands = python -m build pip install .