Skip to content

Commit 6c86e05

Browse files
committed
fix ci
1 parent 7045b51 commit 6c86e05

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

changename.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import os
2+
3+
for f in os.listdir("dist"):
4+
if "linux" in f:
5+
os.rename(
6+
os.path.join("dist", f),
7+
os.path.join("dist", f.replace("linux", "manylinux2014")),
8+
)

0 commit comments

Comments
 (0)