Skip to content

Commit

Permalink
Remove python 3.8 dependency
Browse files Browse the repository at this point in the history
Uses the default python3 currently installed on the system since the current pre-release OSXI (Big Sur) does not build `python 3.8`, see Homebrew#56791
  • Loading branch information
soheil authored Jun 24, 2020
1 parent dacfec9 commit 1563008
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Formula/node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Node < Formula
end

depends_on "pkg-config" => :build
depends_on "python@3.8" => :build
# depends_on "python@3.8" => :build
depends_on "icu4c"

# We track major/minor from upstream Node releases.
Expand All @@ -25,7 +25,7 @@ class Node < Formula

def install
# make sure subprocesses spawned by make are using our Python 3
ENV["PYTHON"] = Formula["python@3.8"].opt_bin/"python3"
ENV["PYTHON"] = "$(which python3)"

# Never install the bundled "npm", always prefer our
# installation from tarball for better packaging control.
Expand Down

0 comments on commit 1563008

Please sign in to comment.