From f5a13dc6c595e1b6f45dddc994b6f22b5cf40b19 Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Sat, 23 Jan 2021 10:38:13 +0000 Subject: [PATCH] Release process now (as of 21.0) produces py3-only wheels --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 2c0a48ecb..de4daf8a7 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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):