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
commite97fac1dd678d427225a5efc941c64204972ba6e (patch)
tree6668746cb347d0cd9ef54927a0cfcd2c34aeccc6 /Library/Homebrew
parent832c52db7efbcab6857e29cd1831cdb2fb1efb76 (diff)
downloadbrew-e97fac1dd678d427225a5efc941c64204972ba6e.tar.bz2
add :python3 to LANGUAGE_MODULES
Add special :python3 dependency tag to LANGUAGE_MODULES in dependency_collector. Closes Homebrew/homebrew#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 = {}