aboutsummaryrefslogtreecommitdiffstats
path: root/create_wheels.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2023-03-06 13:42:27 +0100
committerCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2023-03-21 13:49:42 +0100
commitffb87075e3c4ea4b0a2dd15321af8c1921e33164 (patch)
treede244668134396b72ca56accbe060298edc4a337 /create_wheels.py
parentc38b238f8633f1806ee837f839afcb184455ca44 (diff)
build: remove examples from wheels and installation
To reduce the size and cluttering of wheels and installations the examples are not including any longer. The recommended way to get examples now is to download them directly from the Example Gallery in the documentation page. The option no-examples was removed. [ChangeLog][pyside6] Examples are not included in the wheels anymore and the option no-example was removed. Change-Id: I94fb24f9ffd6c55e2762e7c2e380b0f0ffe0bf61 Fixes: PYSIDE-2247 Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'create_wheels.py')
-rw-r--r--create_wheels.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/create_wheels.py b/create_wheels.py
index 3fc11729e..ec04416c4 100644
--- a/create_wheels.py
+++ b/create_wheels.py
@@ -57,7 +57,7 @@ def get_manifest(wheel_name: str, data: List[ModuleData]) -> str:
if field == "ext":
continue
for line in getattr(module, field):
- if field in ("examples", "extra_dirs", "qml", "plugins"):
+ if field in ("extra_dirs", "qml", "plugins"):
lines.append(f"graft PySide6/{line}")
elif field == "qtlib" and sys.platform == "darwin":
lines.append(f"graft PySide6/{line}")