diff --git a/Formula/powershell-daily.rb b/Formula/powershell-daily.rb index 65ceb23..68881c7 100644 --- a/Formula/powershell-daily.rb +++ b/Formula/powershell-daily.rb @@ -32,8 +32,8 @@ class PowershellDaily < Formula # Disabled because we are unable to maintain the automation to update the formula disable! date: "2023-03-03", because: :unmaintained - # .NET Core 3.1 requires High Sierra - https://docs.microsoft.com/en-us/dotnet/core/install/dependencies?pivots=os-macos&tabs=netcore31 - depends_on macos: :high_sierra + # .NET 10 requires macOS 14 (Sonoma) - https://github.com/dotnet/core/blob/main/release-notes/10.0/supported-os.md#apple + depends_on macos: :sonoma def install libexec.install Dir["*"] diff --git a/Formula/powershell-lts.rb b/Formula/powershell-lts.rb index fe82019..364b17d 100644 --- a/Formula/powershell-lts.rb +++ b/Formula/powershell-lts.rb @@ -29,8 +29,8 @@ class PowershellLts < Formula version "7.4.11" version_scheme 1 - # .NET Core 3.1 requires High Sierra - https://docs.microsoft.com/en-us/dotnet/core/install/dependencies?pivots=os-macos&tabs=netcore31 - depends_on macos: :high_sierra + # .NET 8 requires macOS 13 (Ventura) - https://github.com/dotnet/core/blob/main/release-notes/8.0/supported-os.md#apple + depends_on macos: :ventura def install libexec.install Dir["*"] diff --git a/Formula/powershell-preview.rb b/Formula/powershell-preview.rb index 6e1affa..9bfe8a2 100644 --- a/Formula/powershell-preview.rb +++ b/Formula/powershell-preview.rb @@ -33,8 +33,8 @@ class PowershellPreview < Formula url :head end - # .NET Core 3.1 requires High Sierra - https://docs.microsoft.com/en-us/dotnet/core/install/dependencies?pivots=os-macos&tabs=netcore31 - depends_on macos: :high_sierra + # .NET 10 rerquires macOS 14 (Sonoma) - https://github.com/dotnet/core/blob/main/release-notes/10.0/supported-os.md#apple + depends_on macos: :sonoma def install libexec.install Dir["*"] diff --git a/Formula/powershell.rb b/Formula/powershell.rb index 618bdc2..9650e87 100644 --- a/Formula/powershell.rb +++ b/Formula/powershell.rb @@ -29,8 +29,8 @@ class Powershell < Formula version "7.5.2" version_scheme 1 - # .NET Core 3.1 requires High Sierra - https://docs.microsoft.com/en-us/dotnet/core/install/dependencies?pivots=os-macos&tabs=netcore31 - depends_on macos: :high_sierra + # .NET 9 requires macOS 13 (Ventura) - https://github.com/dotnet/core/blob/main/release-notes/9.0/supported-os.md#apple + depends_on macos: :ventura def install libexec.install Dir["*"]