From a54079ffa1cbd8b7e12d682a13035c2a71425007 Mon Sep 17 00:00:00 2001 From: lmbelo Date: Mon, 11 Nov 2024 18:42:01 -0300 Subject: [PATCH] Adding support for Python 3.12 and 3.13 --- delphifmx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/delphifmx/__init__.py b/delphifmx/__init__.py index 1eb8b51..bd2bc13 100644 --- a/delphifmx/__init__.py +++ b/delphifmx/__init__.py @@ -13,7 +13,7 @@ def find_extension_module(): lib_dir = None lib_ext = None - if not (py_ver in ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]): + if not (py_ver in ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]): raise ValueError(f"DelphiFMX doesn't support Python{py_ver}.") if plat_sys == "Windows":