Skip to content
Open
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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ dependencies = [
"llvmlite>=0.42.0", # Required by numba 0.60+
# TODO: rerun shouldn't be required but rn its in core (there is NO WAY to use dimos without rerun rn)
# remove this once rerun is optional in core
"rerun-sdk>=0.20.0",
"rerun-sdk==0.32.0a1",
"dimos-viewer==0.30.0a6.dev99",
Comment on lines +122 to 123
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.

P2 Pinning a published library's dependency to an exact pre-release version (==0.32.0a1) can cause hard resolution failures for downstream projects that also depend on rerun-sdk. Alpha pins in libraries are generally discouraged for this reason. A lower-bound with an upper-bound cap would preserve the protocol-compatibility intent while giving resolvers room to manoeuvre — though given the tight protocol pairing with the viewer, this may be a deliberate trade-off.

Suggested change
"rerun-sdk==0.32.0a1",
"dimos-viewer==0.30.0a6.dev99",
"rerun-sdk>=0.32.0a1,<0.33",
"dimos-viewer==0.30.0a6.dev99",

"toolz>=1.1.0",
"protobuf>=6.33.5,<7",
Expand Down Expand Up @@ -191,7 +191,7 @@ misc = [
]

visualization = [
"rerun-sdk>=0.20.0",
"rerun-sdk==0.32.0a1",
"dimos-viewer>=0.30.0a4",
]

Expand Down
14 changes: 7 additions & 7 deletions uv.lock

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

Loading