Skip to content

Commit a1b0740

Browse files
committed
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.
1 parent abf05f3 commit a1b0740

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ aiofile = "^3.8.8"
2626
loguru = "^0.7.2"
2727
pydantic = "^2.4.2"
2828
pydantic-settings = "^2.0.3"
29-
python = ">=3.10,<3.13"
29+
python = ">=3.10,<4"
3030
redis = { extras = ["hiredis"], version = "^5.0.1" }
3131
requests = "^2.32.4"
3232
tomli = "^2.0.1"

0 commit comments

Comments
 (0)