(self)
| 958 | return ret |
| 959 | |
| 960 | def wheel_name(self): |
| 961 | ret = f'{_normalise2(self.name)}-{self.version}-{self.tag_python()}-{self.tag_abi()}-{self.tag_platform()}.whl' |
| 962 | assert ret.count('-') == 4, f'Expected 4 dash characters in {ret=}.' |
| 963 | return ret |
| 964 | |
| 965 | def wheel_name_match(self, wheel): |
| 966 | ''' |
no test coverage detected