diff options
| author | Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> | 2025-03-26 12:43:01 +0100 |
|---|---|---|
| committer | Cristián Maureira-Fredes <cristian.maureira-fredes@qt.io> | 2025-04-23 12:21:02 +0200 |
| commit | 9dff2af00f29312a95bda6fcd1029edf407d9966 (patch) | |
| tree | 64a63fa852d59b7a903b6fc88c5ddd40667a5b8a | |
| parent | 254e47a4862b1bdb7557490877febcc9e8614e9c (diff) | |
Desktop Deployment: Upgrade Nuitka to 2.6.86.8
- There were some updates with respect to PySide6 support
- See changelog here: https://nuitka.net/changelog/Changelog.html#nuitka-release-2-6
Task-number: PYSIDE-1612
Change-Id: If091184a2661f81d3d57342ba48edc35e748fc70
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
(cherry picked from commit 5711a3ca9cf5eb36cadfd2aa9478500a17aa395f)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit 8fda329af6d305a640bdaee04db382a2936797cf)
3 files changed, 4 insertions, 4 deletions
diff --git a/sources/pyside-tools/deploy_lib/default.spec b/sources/pyside-tools/deploy_lib/default.spec index 618a0294d..fe274064e 100644 --- a/sources/pyside-tools/deploy_lib/default.spec +++ b/sources/pyside-tools/deploy_lib/default.spec @@ -25,7 +25,7 @@ icon = python_path = # python packages to install -packages = Nuitka==2.5.1 +packages = Nuitka==2.6.8 # buildozer: for deploying Android application android_packages = buildozer==1.5.0,cython==0.29.33 diff --git a/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst b/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst index 534d07072..c41ac9728 100644 --- a/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst +++ b/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst @@ -10,7 +10,7 @@ compiles your Python code to C code, and links with libpython to produce the fin The final executable produced has a ``.exe`` suffix on Windows, ``.bin`` on Linux and ``.app`` on macOS. -.. note:: The default version of Nuitka used with the tool is version ``2.5.1``. This can be +.. note:: The default version of Nuitka used with the tool is version ``2.6.8``. This can be updated to a newer version by updating your ``pysidedeploy.spec`` file. .. _how_pysidedeploy: diff --git a/sources/pyside6/tests/tools/pyside6-deploy/test_pyside6_deploy.py b/sources/pyside6/tests/tools/pyside6-deploy/test_pyside6_deploy.py index 41aadfc47..bce9af22c 100644 --- a/sources/pyside6/tests/tools/pyside6-deploy/test_pyside6_deploy.py +++ b/sources/pyside6/tests/tools/pyside6-deploy/test_pyside6_deploy.py @@ -153,7 +153,7 @@ class TestPySide6DeployWidgets(DeployTestBase): self.assertTrue(config_obj.get_value("app", "project_dir").endswith("tetrix")) self.assertEqual(config_obj.get_value("app", "exec_directory"), ".") self.assertEqual(config_obj.get_value("python", "packages"), - "Nuitka==2.5.1") + "Nuitka==2.6.8") self.assertEqual(config_obj.get_value("qt", "qml_files"), "") equ_base = "--quiet --noinclude-qt-translations" equ_value = equ_base + " --static-libpython=no" if is_pyenv_python() else equ_base @@ -317,7 +317,7 @@ class TestPySide6DeployQml(DeployTestBase): self.assertTrue(config_obj.get_value("app", "project_dir").endswith("editingmodel")) self.assertEqual(config_obj.get_value("app", "exec_directory"), ".") self.assertEqual(config_obj.get_value("python", "packages"), - "Nuitka==2.5.1") + "Nuitka==2.6.8") self.assertEqual(config_obj.get_value("qt", "qml_files"), "main.qml,MovingRectangle.qml") equ_base = "--quiet --noinclude-qt-translations" equ_value = equ_base + " --static-libpython=no" if is_pyenv_python() else equ_base |
