aboutsummaryrefslogtreecommitdiffstats
path: root/python
Commit message (Collapse)AuthorAgeFilesLines
* Bump version number in Python wheels to match with QtDSqds-dev-4.7Simo Fält2025-02-141-1/+1
| | | | | | Change-Id: Ia0c9bbaa0034e8ddb487244d5465bb4122eb9d08 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* DS Wheels: Add support for Python 3.13Shyamnath Premnadh2024-11-201-1/+2
| | | | | | Task-number: PYSIDE-2373 Change-Id: I97ce42630eea9d437320069d65013d783aecc828 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* Bump version number in Python wheels to match with QtDSSimo Fält2024-10-011-1/+1
| | | | | | Change-Id: Ibe1c1838048423b02dfca5a1c252a358938b851a Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
* Avoid overriding __init__.py file and copy DLLsqds-dev-4.6Cristián Maureira-Fredes2024-09-191-3/+9
| | | | | | | | | | | | | This was a mistake during the initial implementation and then it was removing the content we had in the general package. Additionally, the .lib files were copied for the QuickStudio modules, rather than .dll ones, making it impossible to run applications. Change-Id: I1ac1b648e7ad659fe6e3d7b2175e5af87bffa3e0 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Add instructions to generate a PySide packageCristián Maureira-Fredes2024-07-027-0/+320
This includes a new directory with the process to generate a Python Package (wheel) compatible with PySide6, and including the special Quick components that QtDS project might contain. The current version assumes the main project will be built and installed on a 'install' directory at the root of the repo, so files can be copied around for the wheel structure. The instructions can be found on the README, but in summary one needs to run a 'configure.py' script first, then generate the package with a 'python -m build -w' Fixes: PYSIDE-2373 Change-Id: Ic6f8da02f991107180b9a5c60cce944275ca2841 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>