-
-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rui Chen <[email protected]>
- Loading branch information
1 parent
584bb47
commit 1c659d0
Showing
1 changed file
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ class Aider < Formula | |
|
||
desc "AI pair programming in your terminal" | ||
homepage "https://aider.chat/" | ||
url "https://files.pythonhosted.org/packages/94/61/f78dfd9f9f153cf2cffdc7cf3590c1d4e3bc9a79953dbccc30e7529ae63a/aider_chat-0.59.1.tar.gz" | ||
sha256 "5e7ccb8c6b8054563d8c84a20f9d44dafd7f8f2e5fbb68275aa722386f2572f3" | ||
url "https://files.pythonhosted.org/packages/a0/3d/ebfc0c6c818c88855aac34bb195c5738c473b84c89293a75db604eb9de3a/aider_chat-0.60.0.tar.gz" | ||
sha256 "79517259e5a9c7d565d0b792cd5abdccf7fe2a19a7762a288c39bb28de51d952" | ||
license "Apache-2.0" | ||
head "https://github.com/paul-gauthier/aider.git", branch: "main" | ||
|
||
|
@@ -25,7 +25,7 @@ class Aider < Formula | |
depends_on "libyaml" | ||
depends_on "numpy" | ||
depends_on "pillow" | ||
depends_on "[email protected]" | ||
depends_on "[email protected]" # py3.13 support issue, https://github.com/Aider-AI/aider/issues/1984 | ||
depends_on "scipy" | ||
|
||
resource "aiohappyeyeballs" do | ||
|
@@ -384,8 +384,8 @@ class Aider < Formula | |
end | ||
|
||
resource "tree-sitter" do | ||
url "https://files.pythonhosted.org/packages/39/9e/b7cb190aa08e4ea387f2b1531da03efb4b8b033426753c0b97e3698645f6/tree-sitter-0.21.3.tar.gz" | ||
sha256 "b5de3028921522365aa864d95b3c41926e0ba6a85ee5bd000e10dc49b0766988" | ||
url "https://files.pythonhosted.org/packages/01/23/e001538062ece748d7ab1fcfbcd9fa766d85f60f0d5ae014a7caf4f07c70/tree-sitter-0.23.1.tar.gz" | ||
sha256 "28fe02aff6676b203cbe4213ca7116db0aaac08d6ca4c0b1f1af038991631838" | ||
end | ||
|
||
# sdist issue report, https://github.com/grantjenks/py-tree-sitter-languages/issues/63 | ||
|
@@ -419,8 +419,11 @@ class Aider < Formula | |
sha256 "bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29" | ||
end | ||
|
||
def python3 | ||
"python3.12" | ||
end | ||
|
||
def install | ||
Check failure on line 426 in Formula/a/aider.rb GitHub Actions / macOS 15-arm64`brew install --verbose --formula --build-bottle aider` failed on macOS Sequoia (15) on Apple Silicon!
|
||
python3 = "python3.12" | ||
venv = virtualenv_install_with_resources without: "tree-sitter-languages" | ||
|
||
# Requires building languages outside `setup.py`: https://github.com/grantjenks/py-tree-sitter-languages/pull/65 | ||
|