aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements.rb
diff options
context:
space:
mode:
authorMike McQuaid2014-03-07 18:06:33 +0000
committerMike McQuaid2014-03-12 13:57:10 +0000
commit7f48e1a87e215ce45ae8558ddc78c21b313aab72 (patch)
tree11bc3e08d837c54522e9e2d3539739a23601e4d1 /Library/Homebrew/requirements.rb
parentee4b157c4224988256531652ffeb3dce7f8a8490 (diff)
downloadhomebrew-7f48e1a87e215ce45ae8558ddc78c21b313aab72.tar.bz2
requirements: remove unneeded Python27Dependency.
PythonDependency now implies this.
Diffstat (limited to 'Library/Homebrew/requirements.rb')
-rw-r--r--Library/Homebrew/requirements.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb
index 45c128303..73e0860b7 100644
--- a/Library/Homebrew/requirements.rb
+++ b/Library/Homebrew/requirements.rb
@@ -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