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
04682cf8
Unverified
Commit
04682cf8
authored
Feb 17, 2026
by
Tushar Sharma
Committed by
GitHub
Feb 17, 2026
Browse files
fix: pin pydantic-settings<2.13.0 for trtllm compatibility (#6339)
Co-authored-by:
Claude Opus 4.6
<
noreply@anthropic.com
>
parent
9e897181
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
container/deps/requirements.txt
container/deps/requirements.txt
+1
-0
container/render.py
container/render.py
+7
-1
No files found.
container/deps/requirements.txt
View file @
04682cf8
...
@@ -41,6 +41,7 @@ prometheus_client==0.23.1
...
@@ -41,6 +41,7 @@ prometheus_client==0.23.1
prophet==1.2.1
prophet==1.2.1
protobuf>=5.29.5,<7.0.0
protobuf>=5.29.5,<7.0.0
pydantic>=2.11.4,<2.13 # vllm==0.12.0 depends on pydantic>=2.12.0
pydantic>=2.11.4,<2.13 # vllm==0.12.0 depends on pydantic>=2.12.0
pydantic-settings<2.13.0 # tensorrt_llm DynamicYamlWithDeepMergeSettingsSource incompatible with 2.13.0+ deep_merge param
pyright==1.1.407
pyright==1.1.407
PyYAML==6.0.3
PyYAML==6.0.3
scikit-learn==1.7.2
scikit-learn==1.7.2
...
...
container/render.py
View file @
04682cf8
...
@@ -80,7 +80,13 @@ def validate_args(args):
...
@@ -80,7 +80,13 @@ def validate_args(args):
"cuda_version"
:
[
"13.1"
],
"cuda_version"
:
[
"13.1"
],
},
},
"sglang"
:
{
"sglang"
:
{
"target"
:
[
"runtime"
,
"dev"
,
"local-dev"
,
"wheel_builder"
,
"base"
],
"target"
:
[
"runtime"
,
"dev"
,
"local-dev"
,
"wheel_builder"
,
"base"
,
],
"cuda_version"
:
[
"12.9"
,
"13.0"
],
"cuda_version"
:
[
"12.9"
,
"13.0"
],
},
},
"dynamo"
:
{
"dynamo"
:
{
...
...
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