requirements: remove unneeded Python27Dependency.

PythonDependency now implies this.
This commit is contained in:
Mike McQuaid 2014-03-07 18:06:33 +00:00
parent c594053449
commit 0fd32118c7

View File

@ -118,12 +118,3 @@ class GitDependency < Requirement
default_formula 'git'
satisfy { which('git') }
end
class Python27Dependency < Requirement
fatal true
default_formula 'python'
satisfy do
# Note that python -V outputs to stderr
`python -V 2>&1` =~ /^Python 2.7/
end
end