Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update awscli to reflect that it now supports Python 3.12 #191044

Closed
wants to merge 1 commit into from
Closed
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/a/awscli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Awscli < Formula

depends_on "cmake" => :build
depends_on "cryptography"
depends_on "python@3.11" # Python 3.12 issue: https://github.com/aws/aws-cli/issues/8342
depends_on "python@3.12"

uses_from_macos "libffi"
uses_from_macos "mandoc"
Expand Down Expand Up @@ -100,7 +100,7 @@ class Awscli < Formula
end

def python3
which("python3.11")
which("python3.12")
end

def install
Expand Down
Loading