aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorTanachat Nilanon2015-03-19 18:22:57 -0700
committerTim D. Smith2015-03-19 23:04:35 -0700
commit25ce151e55209b4a8ca5959e7c691b8f4a6918fc (patch)
tree7662c66c2458a05362ba09061a8f32e361a9f3e2 /Library/Homebrew
parente54cab533744fe9912e5afa9557106bc94308654 (diff)
downloadhomebrew-25ce151e55209b4a8ca5959e7c691b8f4a6918fc.tar.bz2
add :python3 to LANGUAGE_MODULES
Add special :python3 dependency tag to LANGUAGE_MODULES in dependency_collector. Closes #37898. Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/dependency_collector.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dependency_collector.rb b/Library/Homebrew/dependency_collector.rb
index c5a678067..2601e629c 100644
--- a/Library/Homebrew/dependency_collector.rb
+++ b/Library/Homebrew/dependency_collector.rb
@@ -18,7 +18,7 @@ require 'set'
class DependencyCollector
# Define the languages that we can handle as external dependencies.
LANGUAGE_MODULES = Set[
- :chicken, :jruby, :lua, :node, :ocaml, :perl, :python, :rbx, :ruby
+ :chicken, :jruby, :lua, :node, :ocaml, :perl, :python, :python3, :rbx, :ruby
].freeze
CACHE = {}