Skip to content

Commit

Permalink
Mac build and packaging fixes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Young committed Nov 7, 2024
1 parent ed50847 commit 90dcba2
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions scripts/buildTool.py
Original file line number Diff line number Diff line change
Expand Up @@ -901,28 +901,28 @@ def installDependencies():
# update the list below whenever a new version of MacOS comes out.
#
macOsVersionToReleaseName = {
'15' : 'Sequoia'
'15' : 'Sequoia' ,
# Can't guarantee that other parts of the build/packaging system will work on these older versions, but
# doesn't hurt to at least be able to look them up.
'14' : 'Sonoma'
'13' : 'Ventura'
'12' : 'Monterey'
'11' : 'Big Sur'
'10.15' : 'Catalina'
'10.14' : 'Mojave'
'10.13' : 'High Sierra'
'10.12' : 'Sierra'
'10.11' : 'El Capitan'
'10.10' : 'Yosemite'
'10.9' : 'Mavericks'
'10.8' : 'Mountain Lion'
'10.7' : 'Lion'
'10.6' : 'Snow Leopard'
'10.5' : 'Leopard'
'10.4' : 'Tiger'
'10.3' : 'Panther'
'10.2' : 'Jaguar'
'10.1' : 'Puma'
'14' : 'Sonoma' ,
'13' : 'Ventura' ,
'12' : 'Monterey' ,
'11' : 'Big Sur' ,
'10.15' : 'Catalina' ,
'10.14' : 'Mojave' ,
'10.13' : 'High Sierra' ,
'10.12' : 'Sierra' ,
'10.11' : 'El Capitan' ,
'10.10' : 'Yosemite' ,
'10.9' : 'Mavericks' ,
'10.8' : 'Mountain Lion',
'10.7' : 'Lion' ,
'10.6' : 'Snow Leopard' ,
'10.5' : 'Leopard' ,
'10.4' : 'Tiger' ,
'10.3' : 'Panther' ,
'10.2' : 'Jaguar' ,
'10.1' : 'Puma' ,
'10.0' : 'Cheetah'
}
#
Expand Down

0 comments on commit 90dcba2

Please sign in to comment.