summaryrefslogtreecommitdiffstats
path: root/scripts/packagetesting
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-17 09:28:58 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-17 09:35:07 +0100
commit9c5ba0b4e075ab2114274ce34be5fac575364620 (patch)
treed6aa78798d7febeda3a49e31fbc474f2aac5ea83 /scripts/packagetesting
parent018069328c29187440de24c7b6f178afd5aa8602 (diff)
testwheel.py: Fix version of new project generation test
This is available from 6.5.0 onwards. Amends 351abba272f2927f4068981640d4e722a6fa0f4e. Pick-to: master Change-Id: Ic8b795f5a8c1283ddc33d0949071bfbf2a36249c Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'scripts/packagetesting')
-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 135d9192..05f4905a 100644
--- a/scripts/packagetesting/testwheel.py
+++ b/scripts/packagetesting/testwheel.py
@@ -320,7 +320,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)