We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7045b51 commit 6c86e05Copy full SHA for 6c86e05
1 file changed
changename.py
@@ -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