mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 08:15:18 -04:00
makepanda: Fix naming of wheels for macOS 12.0
This commit is contained in:
parent
89ee20bcf7
commit
c966a6898c
@ -451,7 +451,7 @@ elif target == 'darwin':
|
||||
else:
|
||||
maj, min = platform.mac_ver()[0].split('.')[:2]
|
||||
osxver = int(maj), int(min)
|
||||
if osxver[0] == 11:
|
||||
if osxver[0] >= 11:
|
||||
# I think Python pins minor version to 0 from macOS 11 onward
|
||||
osxver = (osxver[0], 0)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user