mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
21 lines
492 B
Ruby
21 lines
492 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
# Helper functions for querying operating system information.
|
|
#
|
|
# @api private
|
|
module MacOSVersions
|
|
# TODO: when removing symbols here, ensure that they are added to
|
|
# DEPRECATED_MACOS_VERSIONS in MacOSRequirement.
|
|
SYMBOLS = {
|
|
ventura: "13",
|
|
monterey: "12",
|
|
big_sur: "11",
|
|
catalina: "10.15",
|
|
mojave: "10.14",
|
|
high_sierra: "10.13",
|
|
sierra: "10.12",
|
|
el_capitan: "10.11",
|
|
}.freeze
|
|
end
|