Commit 6aee63b
Fix CI: declare boto3 as the
The 0.6.0 AWS Bedrock target uses boto3 (live harness create/invoke + skill S3
upload), but boto3 was never a declared dependency — so CI (`.[dev,google]`) ran
without it and `test_live_harness_orchestration.py` (which patches boto3.client)
errored on main.
- pyproject: add `bedrock = ["boto3>=1.43"]` optional extra (parallels `google`);
live `--target bedrock` deploy needs it (audit/plan/export stay offline-only)
- ci.yml: install `.[dev,google,bedrock]` (offline) and `.[dev,bedrock]` (live)
- test_live_harness_orchestration.py: `pytest.importorskip("boto3")` so a lean
`.[dev]` install skips it cleanly instead of erroring
- docs/deploy-bedrock.md: `pip install "agentlift[bedrock]"` in the setup
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>bedrock extra; install it in CI1 parent 531559e commit 6aee63b
4 files changed
Lines changed: 19 additions & 4 deletions
File tree
- .github/workflows
- docs
- tests
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
22 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
23 | 25 | | |
24 | 26 | | |
25 | 27 | | |
| |||
34 | 36 | | |
35 | 37 | | |
36 | 38 | | |
37 | | - | |
| 39 | + | |
38 | 40 | | |
39 | 41 | | |
40 | 42 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
| 109 | + | |
| 110 | + | |
109 | 111 | | |
110 | 112 | | |
111 | 113 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
36 | 43 | | |
37 | 44 | | |
38 | 45 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
19 | 23 | | |
20 | 24 | | |
21 | 25 | | |
| |||
0 commit comments