From 8a9266a70df19c557adbe4c9868fac1cbd01b7bc Mon Sep 17 00:00:00 2001 From: anatoliy Date: Sat, 17 Jan 2026 04:03:33 +0300 Subject: [PATCH] fix: limit Python to <3.13 (PyO3 3.14 incompatibility) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e450fe4..bdbf295 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ authors = [ ] license = { text = "MIT" } readme = "README.md" -requires-python = ">=3.11,<4.0" +requires-python = ">=3.11,<3.13" dependencies = [ "rapid-api-client (==0.6.0)", "orjson (>=3.10.15,<4.0.0)",