Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [
resolver = "3"

[workspace.package]
version = "0.4.0+post0"
version = "0.4.1"
edition = "2021"
description = "Dynamo Inference Framework"
authors = ["NVIDIA Inc. <[email protected]>"]
Expand All @@ -28,10 +28,10 @@ keywords = ["llm", "genai", "inference", "nvidia", "distributed", "dynamo"]

[workspace.dependencies]
# Local crates
dynamo-runtime = { path = "lib/runtime", version = "0.4.0" }
dynamo-llm = { path = "lib/llm", version = "0.4.0" }
dynamo-tokens = { path = "lib/tokens", version = "0.4.0" }
dynamo-async-openai = { path = "lib/async-openai", version = "0.4.0", features = ["byot", "rustls"]}
dynamo-runtime = { path = "lib/runtime", version = "0.4.1" }
dynamo-llm = { path = "lib/llm", version = "0.4.1" }
dynamo-tokens = { path = "lib/tokens", version = "0.4.1" }
dynamo-async-openai = { path = "lib/async-openai", version = "0.4.1", features = ["byot", "rustls"]}

# External dependencies
anyhow = { version = "1" }
Expand Down
10 changes: 5 additions & 5 deletions docs/support_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ If you are using a **GPU**, the following GPU models and architectures are suppo

| **Python Package** | **Version** | glibc version | CUDA Version |
| :----------------- | :------------ | :----------------------------------- | :----------- |
| ai-dynamo | 0.4.0 | >=2.28 | |
| ai-dynamo-runtime | 0.4.0 | >=2.28 (Python 3.12 has known issues)| |
| NIXL | 0.5.0 | >=2.27 | >=11.8 |
| ai-dynamo | 0.4.1 | >=2.28 | |
| ai-dynamo-runtime | 0.4.1 | >=2.28 (Python 3.12 has known issues)| |
| NIXL | 0.4.1 | >=2.27 | >=11.8 |

### Build Dependency

| **Build Dependency** | **Version** |
| :------------------- | :------------------------------------------------------------------------------- |
| **Base Container** | [25.03](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda-dl-base/tags) |
| **TensorRT-LLM** | 1.0.0rc² |
| **NIXL** | 0.4.0 |
| **TensorRT-LLM** | 1.0.0rc4 |
| **NIXL** | 0.4.1 |

> [!Important]
> ² Specific versions of TensorRT-LLM supported by Dynamo are subject to change.
Expand Down
64 changes: 30 additions & 34 deletions lib/bindings/python/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

[package]
name = "dynamo-py3"
version = "0.4.0+post0"
version = "0.4.1"
edition = "2021"
authors = ["NVIDIA"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

[project]
name = "ai-dynamo-runtime"
version = "0.4.0.post0"
version = "0.4.1"
description = "Dynamo Inference Framework Runtime"
readme = "README.md"
authors = [
Expand Down
10 changes: 6 additions & 4 deletions lib/runtime/examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/runtime/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ members = [
resolver = "3"

[workspace.package]
version = "0.4.0+post0"
version = "0.4.1"
edition = "2021"
authors = ["NVIDIA"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[project]
name = "ai-dynamo"
version = "0.4.0.post0"
version = "0.4.1"
description = "Distributed Inference Framework"
readme = "README.md"
authors = [
Expand All @@ -13,7 +13,7 @@ license = { text = "Apache-2.0" }
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"ai-dynamo-runtime==0.4.0.post0",
"ai-dynamo-runtime==0.4.1",
"pytest>=8.3.4",
"types-psutil>=7.0.0.20250218",
"kubernetes>=32.0.1,<33.0.0",
Expand Down
Loading