summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-17 09:28:58 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-11-17 08:45:26 +0000
commit364a2c72cd4033d4afbf89333a1c9b99a8801a62 (patch)
treeba154890b5333d6ea50dcf4417700f57475c3004
parent6f0fba6b5d9d52192c9d81523187ee303b26430e (diff)
downloadqtqa-364a2c72cd4033d4afbf89333a1c9b99a8801a62.tar.gz
testwheel.py: Fix version of new project generation test
This is available from 6.5.0 onwards. Amends 351abba272f2927f4068981640d4e722a6fa0f4e. Change-Id: Ic8b795f5a8c1283ddc33d0949071bfbf2a36249c Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit 9c5ba0b4e075ab2114274ce34be5fac575364620) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--scripts/packagetesting/testwheel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/packagetesting/testwheel.py b/scripts/packagetesting/testwheel.py
index b100127..0c964a4 100644
--- a/scripts/packagetesting/testwheel.py
+++ b/scripts/packagetesting/testwheel.py
@@ -343,7 +343,7 @@ if __name__ == "__main__":
print("Nuitka not found, skipping test")
sys.exit(0)
- if VERSION >= (6, 4, 1):
+ if VERSION >= (6, 5, 0):
result = test_project_generation()
else:
result = test_deploy(Path(root_ex) / PYINSTALLER_EXAMPLE_6)