From 8eba8374414fe011f5d4db297e0db092146bbcbd 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 fa7b3cd..0f42bd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "ecoindex-monorepo" version = "0.1.0" description = "" readme = "README.md" -requires-python = ">=3.10,<3.13" +requires-python = ">=3.10,<4" authors = [{ name = "Vincent Vatelot", email = "vincent.vatelot@ik.me" }] dependencies = [ "aiofile>=3.8.8",