Skip to content

Commit a7dd02a

Browse files
jcfrthewtex
authored andcommitted
windows_build_wheels: Update main function to accept py_envs arg
1 parent 5c5672e commit a7dd02a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/windows_build_wheels.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,12 @@ def build_wheels(py_envs=None, single_wheel=False, cleanup=False, wheel_names=No
263263
py_env, single_wheel=single_wheel, cleanup=cleanup, wheel_names=wheel_names)
264264

265265

266-
def main(wheel_names=None, cleanup=True):
266+
def main(py_envs=None, wheel_names=None, cleanup=True):
267267
single_wheel = False
268268

269269
build_wheels(
270-
single_wheel=single_wheel, cleanup=cleanup, wheel_names=wheel_names)
270+
single_wheel=single_wheel, cleanup=cleanup,
271+
py_envs=py_envs, wheel_names=wheel_names)
271272
fixup_wheels()
272273
test_wheels(single_wheel=single_wheel)
273274

0 commit comments

Comments
 (0)