From ffb87075e3c4ea4b0a2dd15321af8c1921e33164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristi=C3=A1n=20Maureira-Fredes?= Date: Mon, 6 Mar 2023 13:42:27 +0100 Subject: 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 Reviewed-by: Friedemann Kleint --- create_wheels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'create_wheels.py') 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}") -- cgit v1.2.3