Skip to content

Commit 9809b4b

Browse files
committed
Fixing Python 3.11 support
1 parent 6465254 commit 9809b4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

delphifmx/__init__.py

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

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

1919
if ossys == "Windows":

delphifmx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.1"
1+
__version__ = "1.0.2"

0 commit comments

Comments
 (0)