(self)
| 85 | |
| 86 | class BinaryDistWheel(bdist_wheel): |
| 87 | def finalize_options(self): |
| 88 | super().finalize_options() |
| 89 | # Mark this is not a pure Python package |
| 90 | self.root_is_pure = False |
| 91 | # Set platform tag |
| 92 | self.plat_name = get_wheel_platform_tag() |
| 93 | self.universal = False |
| 94 | |
| 95 | |
| 96 | def get_target_platform_for_envs(): |
nothing calls this directly
no test coverage detected