Skip to content

Commit 87ff7aa

Browse files
committed
Update label_wheels.py for manylinux_2_28
1 parent 54ec39d commit 87ff7aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

label_wheels.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
1111
Result: dist/<vers> contains renamed wheels
1212
"""
13+
1314
import os
1415
import shutil
1516
import sys
@@ -32,7 +33,7 @@
3233

3334
os.mkdir(processed_dir)
3435
for file in os.listdir(raw_dir):
35-
processed_file = file.replace("linux", "manylinux2014")
36+
processed_file = file.replace("linux", "manylinux_2_28")
3637
shutil.copyfile(
3738
os.path.join(raw_dir, file), os.path.join(processed_dir, processed_file)
3839
)

0 commit comments

Comments
 (0)