Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Formula/powershell-daily.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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["*"]
Expand Down
4 changes: 2 additions & 2 deletions Formula/powershell-lts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
depends_on macos: :ventura
depends_on macos: :catalina

Another option: .NET 8 was originally released with support for macOS 10.15 (Catalina)


def install
libexec.install Dir["*"]
Expand Down
4 changes: 2 additions & 2 deletions Formula/powershell-preview.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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["*"]
Expand Down
4 changes: 2 additions & 2 deletions Formula/powershell.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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["*"]
Expand Down