From fbdecf611c498ad0be7c44a1de28d5242e762dc2 Mon Sep 17 00:00:00 2001 From: Miguel Prieto Date: Tue, 17 Mar 2026 10:18:30 -0300 Subject: [PATCH] Remove upper bound on Python version constraint The <3.13 cap was preventing installation on Python 3.13+ despite no compatibility issues. Broadening to >=3.9 allows users on current and future Python releases to install the package without issues. Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 35756df8..9d64cedd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.9,<3.13" +python = ">=3.9" certifi = ">=14.05.14" prometheus-client = ">=0.13.1" six = ">=1.10"