We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b73a6 commit fec2f0cCopy full SHA for fec2f0c
attestations.py
@@ -54,6 +54,7 @@ def debug(msg: str):
54
def collect_dists(packages_dir: Path) -> list[Path]:
55
# Collect all sdists and wheels.
56
dist_paths = [sdist.resolve() for sdist in packages_dir.glob('*.tar.gz')]
57
+ dist_paths.extend(sdist.resolve() for sdist in packages_dir.glob('*.zip'))
58
dist_paths.extend(whl.resolve() for whl in packages_dir.glob('*.whl'))
59
60
# Make sure everything that looks like a dist actually is one.
0 commit comments