aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <[email protected]>2024-01-26 15:20:06 +0100
committerCristian Maureira-Fredes <[email protected]>2024-01-26 21:29:34 +0000
commit2491dac9095aeaeedad7ccb6e1b04ec0765e1b86 (patch)
tree0ee02622f960e5fc94b9593c3006f393c4d08236
parent8754b6a71f7a14b6dc753fdeebc13e3cd09f778f (diff)
build: made shiboken6_generator depends on shiboken6 module
This was forgotten on the old to new wheels transition. Pick-to: 6.6 6.5 Change-Id: I8d48671257e0aefd4ae03ee682df53cf7e309938 Reviewed-by: Friedemann Kleint <[email protected]>
-rw-r--r--create_wheels.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/create_wheels.py b/create_wheels.py
index 783a363e9..12c6f1ce1 100644
--- a/create_wheels.py
+++ b/create_wheels.py
@@ -156,6 +156,8 @@ def generate_pyproject_toml(artifacts: Path, setup: SetupData) -> str:
elif _name == "PySide6_Addons":
_dependencies.append(f"shiboken6=={setup.version[0]}")
_dependencies.append(f"PySide6_Essentials=={setup.version[0]}")
+ elif _name == "shiboken6_generator":
+ _dependencies.append(f"shiboken6=={setup.version[0]}")
with open(artifacts / "pyproject.toml.base") as f:
content = (