Skip to content

Commit 6fc3fc1

Browse files
committed
Adding support for Python 3.12 and 3.13
1 parent fc474a5 commit 6fc3fc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

delphivcl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def find_extension_module():
1111
plat_sys = platform.system()
1212
lib_dir = None
1313

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

1717
if plat_sys == "Windows":

0 commit comments

Comments
 (0)