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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: uv sync --locked --all-extras --dev

- name: Install tau2 for testing
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@main
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@v0.2.0

- name: Ruff lint
run: uv run ruff check .
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
run: uv sync --locked --all-extras --dev

- name: Install tau2 for testing
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@main
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@v0.2.0

- name: Run Core Tests with pytest-xdist (Shard ${{ matrix.shard }}/${{ matrix.total-shards }})
env:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
run: uv sync --locked --all-extras --dev

- name: Install tau2 for testing
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@main
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@v0.2.0

- name: Run Batch Evaluation Tests
env:
Expand Down Expand Up @@ -154,4 +154,4 @@ jobs:
run: uv sync --locked --all-extras --dev

- name: Install tau2 for testing
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@main
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@v0.2.0
2 changes: 1 addition & 1 deletion .github/workflows/e2e-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: uv sync --locked --all-extras --dev

- name: Install tau2 for testing
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@main
run: uv pip install git+https://github.com/sierra-research/tau2-bench.git@v0.2.0

- name: Run E2E Smoke Test
id: run_test
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ parentdir_prefix = "eval-protocol-"
### Black and isort removed; Ruff provides formatting and imports

[tool.uv.sources]
tau2 = { git = "https://github.com/sierra-research/tau2-bench.git" }
tau2 = { git = "https://github.com/sierra-research/tau2-bench.git", rev = "v0.2.0" }

[dependency-groups]
dev = [
Expand Down
Loading