Add support for macOS Big Sur (#17236)

* Add support for macOS Big Sur

* Big Sur is actually macOS 11.0
This commit is contained in:
Adam J. Stewart 2020-06-27 15:07:21 -05:00 committed by GitHub
parent f7aecd9d6e
commit edf776aeb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,6 +54,7 @@ def __init__(self):
'10.13': 'highsierra',
'10.14': 'mojave',
'10.15': 'catalina',
'11.0': 'bigsur',
}
mac_ver = str(macos_version().up_to(2))