diff options
| author | Tanachat Nilanon | 2015-03-19 18:22:57 -0700 |
|---|---|---|
| committer | Tim D. Smith | 2015-03-19 23:04:35 -0700 |
| commit | e97fac1dd678d427225a5efc941c64204972ba6e (patch) | |
| tree | 6668746cb347d0cd9ef54927a0cfcd2c34aeccc6 /Library/Homebrew | |
| parent | 832c52db7efbcab6857e29cd1831cdb2fb1efb76 (diff) | |
| download | brew-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.rb | 2 |
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 = {} |
