From a1b0740bc3da5734f7f2ac662cfdd8e5519845ec Mon Sep 17 00:00:00 2001 From: Dauliac Date: Mon, 11 May 2026 16:52:56 +0200 Subject: [PATCH] fix: extend Python version support to 3.13+ The upper bound `<3.13` prevents installation on Python 3.13 and 3.14, even though the package works fine on these versions. Relax the constraint to `<4` to allow newer Python releases. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f8ebf3f..c4d04ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ aiofile = "^3.8.8" loguru = "^0.7.2" pydantic = "^2.4.2" pydantic-settings = "^2.0.3" -python = ">=3.10,<3.13" +python = ">=3.10,<4" redis = { extras = ["hiredis"], version = "^5.0.1" } requests = "^2.32.4" tomli = "^2.0.1"