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
dynamo
Commits
0abebe38
Unverified
Commit
0abebe38
authored
Feb 13, 2026
by
Qi Wang
Committed by
GitHub
Feb 13, 2026
Browse files
ci: add known_third_party to avoid pre-commit isort failure (#6292)
parent
94fad479
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
pyproject.toml
pyproject.toml
+7
-0
No files found.
pyproject.toml
View file @
0abebe38
...
@@ -139,6 +139,13 @@ balanced_wrapping = true
...
@@ -139,6 +139,13 @@ balanced_wrapping = true
indent
=
" "
indent
=
" "
skip
=
["build"]
skip
=
["build"]
known_first_party
=
["dynamo"]
known_first_party
=
["dynamo"]
# isort may confuse what is 1st or 3rd library. e.g.
# when dynamo/vllm/omni/xx.py import vllm, local isort may treat this `vllm` as first
# party heuristically. This causes local sort differs from GitHub sort and pre-commit
# failure. To mitigate 1) one can install 3rd party lib so that isort is aware of it,
# 2) hardcode 3rd party lib here, 3) add "# isort: skip_file" to problematic files
# as the last resort.
known_third_party
=
[
"vllm"
,
"tensorrt_llm"
,
"sglang"
]
[tool.pytest.ini_options]
[tool.pytest.ini_options]
minversion
=
"8.0"
minversion
=
"8.0"
...
...
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