From f5ff110df727733057e8b3b2d8b982d186780abf Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Thu, 21 May 2020 19:29:18 +0530 Subject: [PATCH] Apply suggestion from review comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Nguyễn Gia Phong --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 7c515bef9..dbb9c3029 100644 --- a/noxfile.py +++ b/noxfile.py @@ -274,7 +274,7 @@ def upload_release(session): f"Remove dist/ and run 'nox -s build-release -- {version}'" ) # Sanity check: Make sure the files are correctly named. - distfile_names = [os.path.basename(f) for f in distribution_files] + distfile_names = sorted(map(os.path.basename, distribution_files)) expected_distribution_files = [ f"pip-{version}-py2.py3-none-any.whl", f"pip-{version}.tar.gz",