From 0749dc57d9697029ff72473c6107f15118eb1950 Mon Sep 17 00:00:00 2001 From: Alon Freund Date: Sun, 24 May 2026 22:58:20 +0300 Subject: [PATCH] Update Python version requirement to align with mellea 0.6.0 Updates requires-python from >=3.10,<3.14 to >=3.11,<3.14 to match the actual requirement of the mellea==0.6.0 dependency, which requires Python >=3.11. This prevents unsatisfiable dependency errors for Python 3.10 users and provides a clear error message upfront. Fixes #69 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1a2a520..6536d0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.1.0" description = "Granite Switch: Composable model building" readme = "README.md" license = "Apache-2.0" -requires-python = ">=3.10,<3.14" +requires-python = ">=3.11,<3.14" dependencies = [ "torch>=2.10.0", "transformers>=5.5.1,<5.9.0",