From fd082d28856c9b3a037f3a1bb3a0065928d040df Mon Sep 17 00:00:00 2001 From: Hisenberg Date: Fri, 12 Jun 2026 16:12:24 +0200 Subject: [PATCH] fix: relax python version req Relax python version requirement to allow latest patch version (via uv run). Could probably go further with "~=3.11" allowing for higher minor versions like 3.14... --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 22d835b..a649959 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "codeplain" dynamic = ["version"] description = "Transform plain language specifications into working code" readme = "README.md" -requires-python = "==3.11" +requires-python = "==3.11.*" classifiers = [ "Environment :: Console", "Intended Audience :: Developers",