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 docs/pilot/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install "assay-ai @ git+https://github.com/Haserjian/assay.git@13db5ba"
- run: pip install "assay-ai==1.22.0"
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

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

PR description/test plan suggest the pilot docs are now fully unified on assay-ai==1.22.0, but docs/pilot/failure-modes.md still includes an example pin (pip install "assay-ai==1.10.1"). Consider updating that snippet to 1.22.0 as well, or clarifying in the PR description/test plan that only quickstart + starter-workflow are in scope.

Copilot uses AI. Check for mistakes.
- name: Run evidence gate
run: |
mkdir -p .assay
Expand All @@ -83,7 +83,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install "assay-ai>=1.10.1"
- run: pip install "assay-ai==1.22.0"
- name: Import pinned assay signer
env:
ASSAY_SIGNER_KEY_B64: ${{ secrets.ASSAY_SIGNER_KEY_B64 }}
Expand Down
4 changes: 2 additions & 2 deletions docs/pilot/starter-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
python-version: "3.12"

- name: Install assay
run: pip install "assay-ai @ git+https://github.com/Haserjian/assay.git@13db5ba"
run: pip install "assay-ai==1.22.0"

- name: Run evidence gate
run: |
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
python-version: "3.12"

- name: Install assay
run: pip install "assay-ai>=1.10.1"
run: pip install "assay-ai==1.22.0"

- name: Import pinned assay signer
env:
Expand Down
Loading