From e3a49c963db55269ddb62fb2e67c164dd85e1e53 Mon Sep 17 00:00:00 2001 From: NomenAK Date: Mon, 14 Jul 2025 17:19:47 +0200 Subject: [PATCH] fix: remove Python max_version limit to enhance compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes restrictive Python max_version (3.12.99) requirement to support newer Python versions and improve installation compatibility across different environments and Python distributions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- config/requirements.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/requirements.json b/config/requirements.json index c781706..b6133fb 100644 --- a/config/requirements.json +++ b/config/requirements.json @@ -1,7 +1,6 @@ { "python": { - "min_version": "3.8.0", - "max_version": "3.12.99" + "min_version": "3.8.0" }, "node": { "min_version": "16.0.0",