diff options
author | Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> | 2025-03-26 12:43:01 +0100 |
---|---|---|
committer | Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> | 2025-03-27 10:11:49 +0100 |
commit | 5711a3ca9cf5eb36cadfd2aa9478500a17aa395f (patch) | |
tree | 67ceefb7d13108f01b0816f50314c18350ac76aa /sources/pyside6 | |
parent | 0d33ac559a5aafb67bd5947a825879a9f6bf2711 (diff) |
Desktop Deployment: Upgrade Nuitka to 2.6.8
- There were some updates with respect to PySide6 support
- See changelog here: https://nuitka.net/changelog/Changelog.html#nuitka-release-2-6
Pick-to: 6.8 6.9
Task-number: PYSIDE-1612
Change-Id: If091184a2661f81d3d57342ba48edc35e748fc70
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside6')
-rw-r--r-- | sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst | 2 | ||||
-rw-r--r-- | sources/pyside6/tests/tools/pyside6-deploy/test_pyside6_deploy.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst b/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst index 7e1c1a883..35df48af8 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 cee64c3dd..1af962c77 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 |