From 8219f8d5fbfefb7fa967d5853bdc1e72894bb6a1 Mon Sep 17 00:00:00 2001 From: Xuehai Pan Date: Fri, 10 Dec 2021 23:09:23 +0800 Subject: [PATCH] bup: migrate to python@3.10 Closes #90917. Signed-off-by: Michka Popoff <3406519+iMichka@users.noreply.github.com> Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> --- Formula/bup.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Formula/bup.rb b/Formula/bup.rb index 2f55dbcef31b6..ecbd604a1c16f 100644 --- a/Formula/bup.rb +++ b/Formula/bup.rb @@ -4,6 +4,7 @@ class Bup < Formula url "https://github.com/bup/bup/archive/0.32.tar.gz" sha256 "a894cfa96c44b9ef48003b2c2104dc5fa6361dd2f4d519261a93178984a51259" license all_of: ["BSD-2-Clause", "LGPL-2.0-only"] + revision 1 head "https://github.com/bup/bup.git", branch: "master" bottle do @@ -18,10 +19,10 @@ class Bup < Formula depends_on "pandoc" => :build depends_on "pkg-config" => :build - depends_on "python@3.9" + depends_on "python@3.10" def install - ENV["PYTHON"] = Formula["python@3.9"].opt_bin/"python3" + ENV["PYTHON"] = Formula["python@3.10"].opt_bin/"python3" system "make", "PREFIX=#{prefix}", "install" end