We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a8b73a6 + fec2f0c commit 1f5d4ecCopy full SHA for 1f5d4ec
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