From b627064c74979bbc5918d1690edc5af96ba28405 Mon Sep 17 00:00:00 2001 From: Ahmad Rezaii Date: Tue, 21 Jan 2025 11:01:48 -0700 Subject: [PATCH] remove inreplace line for python3 in chpl-venv makefile Signed-off-by: Ahmad Rezaii --- util/packaging/homebrew/chapel-main.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/util/packaging/homebrew/chapel-main.rb b/util/packaging/homebrew/chapel-main.rb index 5cf35bbb9be6..e8d6cb11f8c9 100644 --- a/util/packaging/homebrew/chapel-main.rb +++ b/util/packaging/homebrew/chapel-main.rb @@ -30,7 +30,6 @@ def install # It should be noted that this will expand to: 'for cmd in python3.13 python3 python python2; do' # in our find-python.sh script. inreplace "util/config/find-python.sh", /^(for cmd in )(python3 )/, "\\1#{python} \\2" - inreplace "third-party/chpl-venv/Makefile", "python3 -c ", "#{python} -c " # a lot of scripts have a python3 or python shebang, which does not point to python3.12 anymore Pathname.glob("**/*.py") do |pyfile|