diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-26 11:47:26 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-31 18:28:22 +0900 |
commit | 5e77787cf313225a950f7400b21c7db9f673a3c8 (patch) | |
tree | 5084e2d40fe84f9df4967248b2c4746e3b446462 /configure.py | |
parent | 18bbe17324adf762d25334d1a072989ac296f728 (diff) | |
download | sip4-tqt-5e77787cf313225a950f7400b21c7db9f673a3c8.tar.gz sip4-tqt-5e77787cf313225a950f7400b21c7db9f673a3c8.zip |
Fix SEGV on exit when using python 3.12 and raise minimum required version to 3.4.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit bce54982a6bf61d292f293127118a5010260b63e)
Diffstat (limited to 'configure.py')
-rw-r--r-- | configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py index 3a1eb0d..d4d8a3f 100644 --- a/configure.py +++ b/configure.py @@ -389,8 +389,8 @@ def main(argv): """ siputils.inform("This is SIP-TQt %s for Python %s on %s platform." % (sip_version_str, sys.version.split()[0], sys.platform)) - if py_version < 0x030300: - siputils.error("This version of SIP-TQt requires Python v3.3 or later.") + if py_version < 0x030400: + siputils.error("This version of SIP-TQt requires Python v3.4 or later.") global extra_lib_dir |