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

austin: migrate to python@3.9 #62244

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
5 changes: 3 additions & 2 deletions Formula/austin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ class Austin < Formula
url "https://github.com/P403n1x87/austin/archive/v1.0.1.tar.gz"
sha256 "f86804f777f2f466ddede5d530d3ca67582b2a1467d000662d81272d6e9c5639"
license "GPL-3.0"
revision 1
head "https://github.com/P403n1x87/austin.git"

bottle do
Expand All @@ -15,7 +16,7 @@ class Austin < Formula

depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "python@3.8" => :test
depends_on "python@3.9" => :test

def install
system "autoreconf", "--install"
Expand All @@ -26,6 +27,6 @@ def install
end

test do
shell_output("#{bin}/austin #{Formula["python@3.8"].opt_bin}/python3 -c \"print('Test')\"", 33)
shell_output("#{bin}/austin #{Formula["python@3.9"].opt_bin}/python3 -c \"print('Test')\"", 33)
end
end