aboutsummaryrefslogtreecommitdiffstats
path: root/wheel_artifacts
Commit message (Collapse)AuthorAgeFilesLines
* Deprecation Python 3.8Cristián Maureira-Fredes2024-03-121-3/+2
| | | | | | | | | | | The changes related PYSIDE-939 can be removed when 3.9 support is dropped, because the problem was fixed and included in 3.9.13 so we cannot assume everyone will be on that version or superior. Change-Id: I78afc660edc6fbb3bb1a2438e17366e63b24e375 Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* build: move deps from setup.py to pyproject.tomlCristián Maureira-Fredes2024-01-262-1/+1
| | | | | | | | | | | | | The usage of the new 'build' package version made the install_requires statement in our setup.py worthless, so we need to move for pyproject-specific configuration in order to get dependencies installed for some of our packages. Pick-to: 6.6 Change-Id: I4e010e9c13ab005616b2e3948e3024da2a79ebea Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* build: update dependencies and processCristián Maureira-Fredes2024-01-232-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Even though some packages are 'safer' to update, we cannot rely on having the CI discovering it on random integrations. Pinning the remaining packages and ordering them a bit. The update of the 'build' package (to create wheels) required the replacement of 'build.pep517' by the new 'pyproject_hooks' module, and other modification to the wheel artifacts. The removed dependencies are currently placed at the tool level requirements.txt so it's not like they are not needed anymore. Test and CI scripts were adapted in order to rely on the 'dist' directory rather than the 'dist_new' one, removing the old step of creating the wheels with 'setup.py bdist_wheel'. The entry points (console scripts) that we used to have in the 'setup.py' were moved to the 'pyproject.toml' in order to advance towards not relying on the setup.py file. Flake8 issues were addressed in the different files that this patch modified. Change-Id: I83480c1920206e11fcb9a45264b6beaf6f8b686b Pick-to: 6.6 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* Drop setup.cfg in favor of pyproject.tomlCristián Maureira-Fredes2023-11-063-58/+61
| | | | | | | | | | | | | | There were still many options in our setup.cfg that were able to be migrated to the pyproject.toml, and even though there is an experimental option (tool.distutils.bdist_wheel) works well with our configuration related to the 'py_limited_api' and the 'plat_name' options. Still the structure of our current project doesn't provide the most optimal way to use these files without many tricks. Change-Id: I31e67c6ef5e2f29623480a53ef4e28b6cf3cb9a4 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* Final details to enable 3.12 wheel compatibilityCristián Maureira-Fredes2023-10-111-3/+3
| | | | | | | Change-Id: I0252c4e73e8c214ef8aa418ddf88bc452c0fdf53 Pick-to: 6.6 Task-number: PYSIDE-2230 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* setup: add more information for PyPiCristián Maureira-Fredes2023-03-271-1/+4
| | | | | | | | | | | More information can be included in the project_urls field, so it gets rendered on the PyPi project file. Pick-to: 6.5 Change-Id: Id1faac54ca9005414d9512ed575af951205a88cf Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io>
* wheels: use cp37 instead of cp36Cristián Maureira-Fredes2022-10-241-1/+1
| | | | | | | | | | | After removing the remaining mentions of Python 3.6 the wheels were still being generated with the cp36-abi3. Pick-to: 6.4 6.4.0 Change-Id: Icf06173a42c616f817bb428a50ab08a3a01ba705 Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io> Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> Reviewed-by: Christian Tismer <tismer@stackless.com>
* make wheels compatible with Python 3.11Cristián Maureira-Fredes2022-10-171-1/+2
| | | | | | | | | | These leftover mentions to <3.11 made those wheel impossible to install for Python 3.11 Pick-to: 6.4 Fixes: PYSIDE-2086 Change-Id: I2a0e3f87c265e3ddc97e1036ea0137a12e895794 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
* remove mentions to Python 3.6Cristián Maureira-Fredes2022-10-171-2/+1
| | | | | | | | | PySide 6.4.0 is the first release that only supports Python 3.7+ Task-number: PYSIDE-2085 Change-Id: I92016cc438a9272eba3f0d379bb0c4b87bee52f5 Pick-to: 6.4 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* build: replace distutils.cmd.Command and sysconfigCristián Maureira-Fredes2022-10-131-3/+2
| | | | | | | | | | | | | Replaced various dsitutils leftovers: - distutils.cmd.Command by setuptools.Command - distutils.command.build by setuptools.command.build - distutils.sysconfig.get_python_lib(1) by sysconfig.get_paths()['platlib'] Task-number: PYSIDE-2079 Change-Id: Ia694629476f25019f4a9f8d3b306b0367a5cdb08 Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* build: script to create wheelsCristián Maureira-Fredes2022-03-293-0/+84
This approach intends to avoid modifying the current structure we have in build_scripts, and can replace the call: python setup.py bdist_wheel mainly encouraged by PEP517, and the need of having incremental wheels, to replace the current single PySide6 one. The current configuration allows to create two new wheels: PySide6_Essentials, and PySide6_Addons that contain all the essential and addons Qt modules defined by the Qt Installer tool, with some modifications due to the dependencies of certain tools. Check the README files for more info. The known PySide6 wheel is also generated, but it's empty in favor of using the previous two wheels as requirements, installing them automatically, to avoid modifying the usage of 'pip install pyside6' The strategy is based on the current logic behing 'prepare_packages' that we have been using. Once the modules are built, instead of removing those directories currently in 'build/your_env/package', we rename them. Inside this new directory, one can have the 'shiboken6', 'shiboken6_generator', and 'PySide6' directories, with eveything already packed with the required wheel structure. The main difference is that instead of using the content of PySide6 to build one build, we select some files with the MANIFEST.in to create another wheel. The wheel tag drops the old assumption of needing: cp36.cp37.cp38.cp39.cp310-abi3 and only uses: cp36-abi3 Additionally, for Linux, we follow PEP600 to use the GLIBC version in the wheel name instead of manylinux1, manylinux2010, etc... For the current CI configuration, we know we are using 2.28, which is the minimum supported version for Qt6, so the wheel will look like: PySide6-6.3.0-cp36-abi3-manylinux_2_28_x86_64.whl The coin scripts were configured as well, to add the call of the new create_wheels.py script, and test them via wheel_tester.py Note: This script is not intended to be used as a general purpose wheel creation tool, and it's purely focused on the current Qt CI. There are many ad-hoc configurations used in different functions, like the structure of a Qt installation, the usage of 'a' on the environment for limited-api, etc. Task-number: PYSIDE-1115 Fixes: PYSIDE-692 Change-Id: Ic12e428b8b9b64bbe2facb1c520595ccd2384497 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>