From 61fad935a9a663138dc06419ef74a20c1bffc75f Mon Sep 17 00:00:00 2001 From: Ali Yaman Date: Sat, 14 Jun 2025 21:09:12 +0300 Subject: [PATCH] chore: add Python 3.13 support and remove upper version constraint --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a6e4ca8..a0ecce6 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], - python_requires=">=3.8, <3.13", + python_requires=">=3.8", )