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
2 changes: 1 addition & 1 deletion packages/prime/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ authors = [
dependencies = [
"prime-sandboxes>=0.2.27",
"prime-evals>=0.2.3",
"prime-tunnel>=0.1.9",
"prime-tunnel>=0.1.10",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Bump the workspace tunnel package too

When this repo is installed from the workspace, uv is configured to use the local prime-tunnel source and the root override still permits prime-tunnel>=0.1.6 (pyproject.toml:23). That local package is still version 0.1.9 (packages/prime-tunnel/src/prime_tunnel/__init__.py:3), so monorepo dev/test/release-e2e runs can continue exercising 0.1.9 even though the CLI now declares 0.1.10. If the CLI depends on fixes in 0.1.10, bump the workspace package/release metadata or stop resolving it from the local 0.1.9 source with this dependency change.

Useful? React with 👍 / 👎.

"httpx>=0.25.0",
"pydantic>=2.0.0",
"typer>=0.9.0,<0.26",
Expand Down
2 changes: 1 addition & 1 deletion packages/prime/tests/test_tunnel_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_prime_requires_runtime_sdks_with_cli_feature_support() -> None:
pyproject = tomllib.loads(pyproject_path.read_text(encoding="utf-8"))

assert "prime-evals>=0.2.3" in pyproject["project"]["dependencies"]
assert "prime-tunnel>=0.1.9" in pyproject["project"]["dependencies"]
assert "prime-tunnel>=0.1.10" in pyproject["project"]["dependencies"]


def test_tunnel_start_cli_passes_labels_to_sdk(monkeypatch: pytest.MonkeyPatch) -> None:
Expand Down
Loading