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

azure-cli: migrate to [email protected] #180221

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/azure-cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AzureCli < Formula
depends_on "pkg-config" => :build
depends_on "rust" => :build
depends_on "openssl@3"
depends_on "python@3.11" # Python 3.12 issue: https://github.com/Azure/azure-cli/issues/27673
depends_on "python@3.12"

uses_from_macos "libffi"

Expand Down Expand Up @@ -721,7 +721,7 @@ def install
ENV["OPENSSL_DIR"] = Formula["openssl@3"].opt_prefix
ENV["OPENSSL_NO_VENDOR"] = "1"

venv = virtualenv_create(libexec, "python3.11", system_site_packages: false, without_pip: false)
venv = virtualenv_create(libexec, "python3.12", system_site_packages: false)
venv.pip_install resources

# Get the CLI components we'll install
Expand Down
Loading