Skip to content

Commit 1f598e2

Browse files
committed
fix win wheel
1 parent 3fc66fd commit 1f598e2

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

recipe/fix_windows_wheel.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@ def add_library(lib_paths, dist_path='dist'):
1818
shutil.copy2(lib_path, pjoin('symengine', 'lib'))
1919

2020
def main():
21-
args = [sys.argv[1]]
22-
for arg in sys.argv[2:]:
23-
print(arg, glob(arg))
21+
args = []
22+
for arg in sys.argv[1:]:
2423
args.extend(glob(arg))
25-
for arg in args:
26-
print(arg)
2724
add_library(args)
2825

2926
if __name__ == '__main__':

0 commit comments

Comments
 (0)