Skip to content

Commit a54079f

Browse files
committed
Adding support for Python 3.12 and 3.13
1 parent 258eb91 commit a54079f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

delphifmx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def find_extension_module():
1313
lib_dir = None
1414
lib_ext = None
1515

16-
if not (py_ver in ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]):
16+
if not (py_ver in ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]):
1717
raise ValueError(f"DelphiFMX doesn't support Python{py_ver}.")
1818

1919
if plat_sys == "Windows":

0 commit comments

Comments
 (0)