Commit 4325171
feat(docker): read package manifests from s3 (#259)
* feat(docker): read package manifests from s3
* fix(docker): add type assertions for manifest data
Fix Pyright type error in _load_manifest_data() by adding explicit
type casting for jsonlines.Reader return values. Also run Black
formatter to fix code formatting issues.
- Add cast() import from typing
- Cast manifest_meta to Dict
- Cast entries to List[Dict]
- Run Black formatter on Python files
Fixes CI type checking failures in PR #259.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
* docs: update CHANGELOG for v0.8.7
Document all changes in v0.8.7:
Added:
- Browse buttons for linked packages
- Read-only package manifest browsing from S3
Changed:
- PackageFileFetcher reads manifests from S3 (not quilt3.Package.browse())
- Added role_arn and region parameters for cross-account access
Fixed:
- Docker filesystem writes eliminated (closes #258)
- Pyright type error with explicit type casting
- Python code formatting (Black)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
* fix(deps): migrate to uv dependency-groups and refactor Makefile
- Migrate from [project.optional-dependencies] to [dependency-groups]
for PEP 735 compliance and proper uv group support
- Add UVDEV variable to Makefile for improved readability
- Update install target to use --group dev --group docs
- Update lint and test-unit targets to use $(UVDEV)
- Fix pyright not being available in uv run context
This resolves the "Failed to spawn: pyright" error by ensuring
dev dependencies (pytest, black, isort, pyright) are properly
configured as a dependency group rather than optional dependencies.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
* chore(deps): remove unused docs dependency group
Remove sphinx and sphinx-rtd-theme from dependency-groups as the
project uses markdown documentation instead of Sphinx-generated docs.
Updates:
- Remove docs group from pyproject.toml
- Update Makefile install target to only sync dev group
- Update uv.lock to reflect removed dependencies
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
* Update uv.lock
Co-Authored-By: Claude <noreply@anthropic.com>
---------
Co-authored-by: Claude <noreply@anthropic.com>1 parent b8c4aab commit 4325171
File tree
7 files changed
+189
-272
lines changed- docker
- src
- tests
7 files changed
+189
-272
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| 16 | + | |
| 17 | + | |
15 | 18 | | |
16 | 19 | | |
17 | 20 | | |
18 | 21 | | |
19 | 22 | | |
20 | 23 | | |
21 | 24 | | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
22 | 28 | | |
23 | 29 | | |
24 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
26 | 29 | | |
27 | 30 | | |
28 | 31 | | |
| |||
117 | 120 | | |
118 | 121 | | |
119 | 122 | | |
120 | | - | |
| 123 | + | |
121 | 124 | | |
122 | 125 | | |
123 | 126 | | |
| |||
212 | 215 | | |
213 | 216 | | |
214 | 217 | | |
215 | | - | |
| 218 | + | |
216 | 219 | | |
217 | 220 | | |
218 | 221 | | |
| |||
371 | 374 | | |
372 | 375 | | |
373 | 376 | | |
374 | | - | |
375 | | - | |
376 | | - | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
377 | 380 | | |
378 | 381 | | |
379 | 382 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
39 | | - | |
| 39 | + | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | 50 | | |
55 | 51 | | |
56 | 52 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| 79 | + | |
| 80 | + | |
79 | 81 | | |
80 | 82 | | |
81 | 83 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
20 | 23 | | |
21 | | - | |
| 24 | + | |
22 | 25 | | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
23 | 29 | | |
| 30 | + | |
24 | 31 | | |
25 | 32 | | |
26 | 33 | | |
| |||
82 | 89 | | |
83 | 90 | | |
84 | 91 | | |
85 | | - | |
| 92 | + | |
86 | 93 | | |
87 | 94 | | |
88 | | - | |
| 95 | + | |
89 | 96 | | |
90 | 97 | | |
91 | 98 | | |
92 | 99 | | |
93 | 100 | | |
94 | | - | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
95 | 109 | | |
96 | 110 | | |
97 | 111 | | |
98 | 112 | | |
99 | 113 | | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
100 | 117 | | |
101 | 118 | | |
102 | 119 | | |
103 | 120 | | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
104 | 186 | | |
105 | 187 | | |
106 | 188 | | |
| |||
124 | 206 | | |
125 | 207 | | |
126 | 208 | | |
127 | | - | |
128 | | - | |
129 | | - | |
130 | | - | |
131 | | - | |
132 | | - | |
133 | | - | |
134 | | - | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
135 | 214 | | |
136 | 215 | | |
137 | | - | |
138 | | - | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
139 | 221 | | |
140 | 222 | | |
141 | 223 | | |
| |||
147 | 229 | | |
148 | 230 | | |
149 | 231 | | |
150 | | - | |
151 | 232 | | |
152 | 233 | | |
153 | 234 | | |
| |||
183 | 264 | | |
184 | 265 | | |
185 | 266 | | |
186 | | - | |
| 267 | + | |
187 | 268 | | |
188 | | - | |
189 | | - | |
190 | | - | |
| 269 | + | |
| 270 | + | |
191 | 271 | | |
192 | | - | |
| 272 | + | |
193 | 273 | | |
194 | | - | |
195 | | - | |
| 274 | + | |
196 | 275 | | |
197 | 276 | | |
198 | 277 | | |
| |||
0 commit comments