From 57d66a797c0aeacc14c83299d3c7ae9e6ce0bd8d Mon Sep 17 00:00:00 2001 From: "Bob W. Hogg" Date: Fri, 10 Mar 2017 18:08:49 -0800 Subject: [PATCH] Python requirements: Remove casks Neither python nor python3 are available from Caskroom. Signed-off-by: Bob W. Hogg --- Library/Homebrew/requirements/python_requirement.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/requirements/python_requirement.rb b/Library/Homebrew/requirements/python_requirement.rb index 696b9c800a..e62ec4cfef 100644 --- a/Library/Homebrew/requirements/python_requirement.rb +++ b/Library/Homebrew/requirements/python_requirement.rb @@ -3,7 +3,6 @@ require "language/python" class PythonRequirement < Requirement fatal true default_formula "python" - cask "python" satisfy build_env: false do python = which_python @@ -56,7 +55,6 @@ end class Python3Requirement < PythonRequirement fatal true default_formula "python3" - cask "python3" satisfy(build_env: false) { which_python }