Skip to content

Commit

Permalink
Adding support for Python 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lmbelo committed Nov 11, 2024
1 parent 258eb91 commit a54079f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion delphifmx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit a54079f

Please sign in to comment.