Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
dedaf8cd
"git@developer.sourcefind.cn:OpenDAS/torchani.git" did not exist on "5fe2682979adcaca5439bb18a8ce85cbc56eec9d"
Unverified
Commit
dedaf8cd
authored
Dec 12, 2024
by
Yineng Zhang
Committed by
GitHub
Dec 12, 2024
Browse files
minor: update pypi tag (#2463)
parent
32ed0160
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
sgl-kernel/setup.py
sgl-kernel/setup.py
+11
-0
No files found.
sgl-kernel/setup.py
View file @
dedaf8cd
...
@@ -49,6 +49,15 @@ def rename_wheel():
...
@@ -49,6 +49,15 @@ def rename_wheel():
shutil
.
rmtree
(
tmp_dir
)
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
(
setup
(
name
=
"sgl-kernel"
,
name
=
"sgl-kernel"
,
version
=
get_version
(),
version
=
get_version
(),
...
@@ -78,3 +87,5 @@ setup(
...
@@ -78,3 +87,5 @@ setup(
cmdclass
=
{
"build_ext"
:
BuildExtension
},
cmdclass
=
{
"build_ext"
:
BuildExtension
},
install_requires
=
[
"torch"
],
install_requires
=
[
"torch"
],
)
)
update_wheel_platform_tag
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment