"src/vscode:/vscode.git/clone" did not exist on "5493524b7130fa8fe7f1e71f7c93113e8c8fbb2c"
Unverified Commit dedaf8cd authored by Yineng Zhang's avatar Yineng Zhang Committed by GitHub
Browse files

minor: update pypi tag (#2463)

parent 32ed0160
......@@ -49,6 +49,15 @@ def rename_wheel():
shutil.rmtree(tmp_dir)
def update_wheel_platform_tag():
wheel_dir = Path("dist")
old_wheel = next(wheel_dir.glob("*.whl"))
new_wheel = wheel_dir / old_wheel.name.replace(
"linux_x86_64", "manylinux2014_x86_64"
)
old_wheel.rename(new_wheel)
setup(
name="sgl-kernel",
version=get_version(),
......@@ -78,3 +87,5 @@ setup(
cmdclass={"build_ext": BuildExtension},
install_requires=["torch"],
)
update_wheel_platform_tag()
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment