(**kwargs)
| 313 | |
| 314 | |
| 315 | def resolve_wheel_names(**kwargs): |
| 316 | # type: (**Any) -> List[str] |
| 317 | return [ |
| 318 | os.path.basename(resolved_distribution.distribution.location) |
| 319 | for resolved_distribution in resolve(**kwargs).distributions |
| 320 | ] |
| 321 | |
| 322 | |
| 323 | def resolve_p537_wheel_names( |
no test coverage detected