From 57499420bed76f6dcb9080d72b06d09e33c78464 Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Sat, 7 Mar 2026 19:18:55 +0100 Subject: [PATCH] chore: add requires-python >= 3.13 to project metadata The [project] table was missing the requires-python field. This aligns with the poetry dependency constraint (python = "^3.13") and ensures pip/build tools enforce the minimum Python version. Signed-off-by: jimisola --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c32d7c3..39a907b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"] [project] name = "reqstool-python-poetry-plugin" +requires-python = ">=3.13" dynamic = ["version"] [tool.poetry]