Skip to content

Commit 800f7df

Browse files
jcfrthewtex
authored andcommitted
windows_build_wheels: Fix reading of wheel names
1 parent 67591b6 commit 800f7df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/windows_build_wheels.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ def build_wheel(python_version, single_wheel=False):
175175

176176
# Build wheels
177177
with open(os.path.join(SCRIPT_DIR, "WHEEL_NAMES.txt"), "r") as content:
178-
wheel_names = content.readline()
178+
wheel_names = [wheel_name.strip()
179+
for wheel_name in content.readlines()]
179180

180181
for wheel_name in wheel_names:
181182
# Configure setup.py

0 commit comments

Comments
 (0)