Merge pull request #295 from trail-of-forks/ww/fix-sdist-collection

This commit is contained in:
Sviatoslav Sydorenko (Святослав Сидоренко) 2024-11-06 20:01:10 +01:00 committed by GitHub
commit 1f5d4ec244
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ def debug(msg: str):
def collect_dists(packages_dir: Path) -> list[Path]:
# Collect all sdists and wheels.
dist_paths = [sdist.resolve() for sdist in packages_dir.glob('*.tar.gz')]
dist_paths.extend(sdist.resolve() for sdist in packages_dir.glob('*.zip'))
dist_paths.extend(whl.resolve() for whl in packages_dir.glob('*.whl'))
# Make sure everything that looks like a dist actually is one.