We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b118fe commit a00bb92Copy full SHA for a00bb92
mesonpy/__init__.py
@@ -275,6 +275,9 @@ def platform_tag(self) -> str:
275
# latter specifies the target macOS version Python was built
276
# against.
277
parts[1] = platform.mac_ver()[0]
278
+ # Only pick up the major version
279
+ # https://github.com/FFY00/meson-python/issues/160
280
+ parts[1] = parts[1].split('.')[0]
281
282
if parts[1] in ('11', '12'):
283
# Workaround for bug where pypa/packaging does not consider macOS
0 commit comments