1
1
Derivar 0

Remove a sorted call

Otherwise, we'd try sorting this list twice.
Este cometimento está contido em:
Pradyun Gedam 2020-05-21 19:32:28 +05:30 cometido por GitHub
ascendente f5ff110df7
cometimento cfaa08efed
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros modificados com 1 adições e 1 eliminações

Ver ficheiro

@ -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 = sorted(map(os.path.basename, distribution_files))
distfile_names = map(os.path.basename, distribution_files)
expected_distribution_files = [
f"pip-{version}-py2.py3-none-any.whl",
f"pip-{version}.tar.gz",