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
3 changes: 2 additions & 1 deletion Cargo.lock

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

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,6 @@ tokio-rustls = { version = "0.26" }
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
rustls-pemfile = { version = "2" }

[patch.crates-io]
aiconfigurator-core = { git = "https://github.com/ai-dynamo/aiconfigurator.git", rev = "614b9c8c8725332533616786e2eb049df48935f0" }

[profile.dev.package]
insta.opt-level = 3

Expand Down
7 changes: 2 additions & 5 deletions aisimulate/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ classifiers = [
]
dependencies = [
"ai-dynamo>=1.3.0,<2.0.0",
"aiconfigurator @ git+https://github.com/ai-dynamo/aiconfigurator.git@614b9c8c8725332533616786e2eb049df48935f0",
"aiconfigurator-core @ git+https://github.com/ai-dynamo/aiconfigurator.git@614b9c8c8725332533616786e2eb049df48935f0#subdirectory=aic-core",
"aiconfigurator==0.11.0",
"aiconfigurator-core==0.11.0",
"chex==0.1.87",
"filterpy==1.4.5",
"flax==0.10.0",
Expand Down Expand Up @@ -62,9 +62,6 @@ test = [
Repository = "https://github.com/ai-dynamo/dynamo.git"
Documentation = "https://github.com/ai-dynamo/dynamo/tree/main/docs/fern/components/aisimulate"

[tool.hatch.metadata]
allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = ["src/aisimulate"]

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ classifiers = [
]

dependencies = [
"aiconfigurator-core @ git+https://github.com/ai-dynamo/aiconfigurator.git@614b9c8c8725332533616786e2eb049df48935f0#subdirectory=aic-core",
"aiconfigurator-core==0.11.0",
"aiperf==0.10.0",
"matplotlib",
"networkx",
Expand Down
2 changes: 1 addition & 1 deletion container/deps/requirements.frontend.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

# Required by experimental KV router --router-prefill-load-model=aic.
aiconfigurator-core @ git+https://github.com/ai-dynamo/aiconfigurator.git@614b9c8c8725332533616786e2eb049df48935f0#subdirectory=aic-core
aiconfigurator-core==0.11.0

# tritonclient<=2.62.0 requires grpcio<1.68 and protobuf<6.0dev; pin here so the
# resolver picks compatible versions when installed alongside runtime deps.
Expand Down
6 changes: 3 additions & 3 deletions container/deps/requirements.planner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

# Dependencies required by the planner, profiler, and global_planner services.

# Keep both layers on the same immutable AIC source revision.
aiconfigurator @ git+https://github.com/ai-dynamo/aiconfigurator.git@614b9c8c8725332533616786e2eb049df48935f0
# Keep both layers on the same published AIC release.
aiconfigurator==0.11.0

aiconfigurator-core @ git+https://github.com/ai-dynamo/aiconfigurator.git@614b9c8c8725332533616786e2eb049df48935f0#subdirectory=aic-core
aiconfigurator-core==0.11.0
aiofiles<=25.1.0
aiohttp>=3.14.3,<4.0 # see overrides.planner.txt: aiperf pins aiohttp~=3.13.3
filterpy==1.4.5
Expand Down
3 changes: 2 additions & 1 deletion lib/bindings/python/Cargo.lock

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

3 changes: 0 additions & 3 deletions lib/bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,6 @@ dynamo-llm = { path = "../../llm", default-features = false }
opentelemetry_sdk = { version = "0.31.0", features = ["trace"] }
tracing-subscriber = { version = "0.3", features = ["registry"] }

[patch.crates-io]
aiconfigurator-core = { git = "https://github.com/ai-dynamo/aiconfigurator.git", rev = "614b9c8c8725332533616786e2eb049df48935f0" }

[profile.profiling]
inherits = "release"
debug = true
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ sglang = [
]

mocker = [
"aiconfigurator-core @ git+https://github.com/ai-dynamo/aiconfigurator.git@614b9c8c8725332533616786e2eb049df48935f0#subdirectory=aic-core",
"aiconfigurator-core==0.11.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔍 AIC consistency guard is still skipped with a now-stale reason

The dependency consistency test that enforces "every AIC dependency pins one published release" is unconditionally skipped with the reason "release/1.4.0 pins AIC to an immutable Git source" (tests/dependencies/test_aiconfigurator_consistency.py:22-29). That reason no longer holds after this PR: the helpers in that file specifically assert index-resolvable Python requirements (_python_exact_version rejects URLs) and crates.io-sourced Cargo entries with a registry checksum (_cargo_lock_version), which is exactly the state the diff establishes. Removing the skip would give automated protection against future drift between the two Cargo manifests, the two Cargo.lock files, and the five Python requirement declarations touched here.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

]

[project.entry-points.pytest11]
Expand Down Expand Up @@ -118,9 +118,6 @@ build-backend = "hatchling.build"
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"

[tool.hatch.metadata]
allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = [
"components/src/dynamo",
Expand Down
Loading