This commit is contained in:
Amir Fayazi 2023-11-29 21:41:48 +08:00 committed by GitHub
commit cb1b0f5764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

0
news/12253.trivial.rst Normal file
View File

View File

@ -706,8 +706,8 @@ class PackageFinder:
def requires_python_skipped_reasons(self) -> List[str]:
reasons = {
detail
for _, result, detail in self._logged_links
"{} {}".format(link.filename, detail)
for link, result, detail in self._logged_links
if result == LinkType.requires_python_mismatch
}
return sorted(reasons)