Skip to content

Commit 791bd2c

Browse files
Add logging for packages selected for wheel building
Print the list of packages to be built when building wheels.
1 parent 9592231 commit 791bd2c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/wheelbuilder/build_wheels.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ def build_wheels(pip):
116116
if not packages_to_build:
117117
print("Building wheels failed, no packages selected", flush=True)
118118
return
119+
else:
120+
print("Building wheels:")
121+
for pkg in packages_to_build:
122+
print("\t", pkg)
119123

120124
if sys.platform == "win32":
121125
script_ext = "bat"

0 commit comments

Comments
 (0)