File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -472,7 +472,12 @@ RUN apt-get update && \
472472COPY --from=ci_minimum /workspace/target/release/metrics /usr/local/bin/metrics
473473COPY --from=wheel_builder /workspace/dist/*.whl wheelhouse/
474474COPY --from=base /workspace/wheels/nixl/*.whl wheelhouse/
475- RUN uv pip install "ai-dynamo[sglang]" --pre --find-links wheelhouse
475+ ARG SGLANG_VERSION
476+ RUN uv pip install \
477+ /workspace/wheelhouse/ai_dynamo_runtime*cp312*.whl \
478+ /workspace/wheelhouse/ai_dynamo*any.whl \
479+ /workspace/wheelhouse/nixl*.whl \
480+ "sglang[all]==${SGLANG_VERSION}"
476481
477482# Common dependencies
478483# TODO: Remove extra install and use pyproject.toml to define all dependencies
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ license = { text = "Apache-2.0" }
2626license-files = [" LICENSE" ]
2727requires-python = " >=3.10"
2828dependencies = [
29- " pydantic>=2.10.6,<2.11.0 " ,
29+ " pydantic>=2.10.6,<= 2.11.7 " ,
3030 " uvloop>=0.21.0" ,
3131]
3232classifiers = [
You can’t perform that action at this time.
0 commit comments