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>
This commit is contained in:
Tanachat Nilanon 2015-03-19 18:22:57 -07:00 committed by Tim D. Smith
parent 832c52db7e
commit e97fac1dd6

View File

@ -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 = {}