Return a wheel filename reconstructed from its fields (that may not be the same as the original filename.)
(self)
| 1260 | return not self.tags.isdisjoint(tags) |
| 1261 | |
| 1262 | def to_filename(self): |
| 1263 | """ |
| 1264 | Return a wheel filename reconstructed from its fields (that may not be |
| 1265 | the same as the original filename.) |
| 1266 | """ |
| 1267 | build = f"-{self.build}" if self.build else "" |
| 1268 | pyvers = ".".join(self.python_versions) |
| 1269 | abis = ".".join(self.abis) |
| 1270 | plats = ".".join(self.platforms) |
| 1271 | return f"{self.name}-{self.version}{build}-{pyvers}-{abis}-{plats}.whl" |
| 1272 | |
| 1273 | def is_pure(self): |
| 1274 | """ |