From b69fa588a976c00d9d97c2318651a4e85d58b941 Mon Sep 17 00:00:00 2001 From: Krish Suchak Date: Fri, 20 Feb 2026 16:55:52 -0500 Subject: [PATCH 1/2] add more deps to homebrew install --- .github/templates/formula.rb.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/templates/formula.rb.template b/.github/templates/formula.rb.template index e5df6b3..44383c3 100644 --- a/.github/templates/formula.rb.template +++ b/.github/templates/formula.rb.template @@ -21,7 +21,7 @@ class {{CLASS_NAME}} < Formula system python3, "-m", "venv", libexec # Install the package and all dependencies - system libexec/"bin/pip", "install", "--upgrade", "pip" + system libexec/"bin/pip", "install", "--upgrade", "pip", "setuptools", "wheel" # Set version for setuptools-scm since archive tarballs lack .git metadata # Skip for HEAD builds — they use git clone, so setuptools-scm reads tags directly ENV["SETUPTOOLS_SCM_PRETEND_VERSION"] = version.to_s unless build.head? From e4400364c10e1f09ec90079ef99b005166674756 Mon Sep 17 00:00:00 2001 From: Krish Suchak Date: Fri, 20 Feb 2026 16:56:00 -0500 Subject: [PATCH 2/2] #patch