Skip to content

Commit 18679b9

Browse files
authored
Apply suggestions from code review
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent 87393cc commit 18679b9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/compare-dist-sizes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def key_for(filename: str) -> str | None:
5555
return f"wheel:{build}-{m['python']}-{m['abi']}-{m['platform']}"
5656
if m := SDIST_RE.match(filename):
5757
return "sdist"
58-
return None
58+
msg = f"Unexpected dist name: {filename}"
59+
raise ValueError(msg)
5960

6061

6162
def display_for(filename: str) -> str:

.github/workflows/wheels.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ jobs:
267267

268268
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
269269
with:
270-
enable-cache: false
271270

272271
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
273272
with:

0 commit comments

Comments
 (0)