Release process now (as of 21.0) produces py3-only wheels

This commit is contained in:
Paul Moore 2021-01-23 10:38:13 +00:00
parent 70cedabcab
commit f5a13dc6c5
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ def upload_release(session):
# Sanity check: Make sure the files are correctly named.
distfile_names = map(os.path.basename, distribution_files)
expected_distribution_files = [
f"pip-{version}-py2.py3-none-any.whl",
f"pip-{version}-py3-none-any.whl",
f"pip-{version}.tar.gz",
]
if sorted(distfile_names) != sorted(expected_distribution_files):