Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
e7ae3bf3
Unverified
Commit
e7ae3bf3
authored
Mar 31, 2025
by
yihong
Committed by
GitHub
Mar 31, 2025
Browse files
fix: better install requirement for install in setup.py (#15796)
Signed-off-by:
yihong0618
<
zouzou0208@gmail.com
>
parent
b932c048
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
setup.py
setup.py
+2
-3
No files found.
setup.py
View file @
e7ae3bf3
...
...
@@ -592,9 +592,8 @@ def get_requirements() -> list[str]:
for
line
in
requirements
:
if
line
.
startswith
(
"-r "
):
resolved_requirements
+=
_read_requirements
(
line
.
split
()[
1
])
elif
line
.
startswith
(
"--"
):
continue
else
:
elif
not
line
.
startswith
(
"--"
)
and
not
line
.
startswith
(
"#"
)
and
line
.
strip
()
!=
""
:
resolved_requirements
.
append
(
line
)
return
resolved_requirements
...
...
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