aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-12-14 10:10:06 +0000
committerGitHub2017-12-14 10:10:06 +0000
commitc912d268f17901044c2012683c11e2adcf260cf2 (patch)
tree9d9b6e3bb9cb93884c97729bcf78a7405f69e203 /Library
parent9f18123e0792ede45729917ec5ab79b54e5acdab (diff)
parentf4e647cbc6b3dbc3f128d09e0709b0a559eb9e84 (diff)
downloadbrew-c912d268f17901044c2012683c11e2adcf260cf2.tar.bz2
Merge pull request #3577 from MikeMcQuaid/python_requirement_tweaks
python_requirement: various tweaks/fixes.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/requirements/python_requirement.rb19
1 files changed, 11 insertions, 8 deletions
diff --git a/Library/Homebrew/requirements/python_requirement.rb b/Library/Homebrew/requirements/python_requirement.rb
index c162b072c..3215d0a6c 100644
--- a/Library/Homebrew/requirements/python_requirement.rb
+++ b/Library/Homebrew/requirements/python_requirement.rb
@@ -7,15 +7,12 @@ class PythonRequirement < Requirement
satisfy build_env: false do
python = which_python
next unless python
- version = python_short_version
- next unless version
+ next unless short_version
# Always use Python 2.7 for consistency on older versions of Mac OS X.
- version == Version.create("2.7")
+ short_version == Version.create("2.7")
end
env do
- short_version = python_short_version
-
if !system_python? && short_version == Version.create("2.7")
ENV.prepend_path "PATH", which_python.dirname
end
@@ -24,10 +21,14 @@ class PythonRequirement < Requirement
ENV.prepend_path "PATH", Formula["python"].opt_bin
ENV.prepend_path "PATH", Formula["python"].opt_libexec/"bin"
- ENV["PYTHONPATH"] = "#{HOMEBREW_PREFIX}/lib/python#{short_version}/site-packages"
+ if system_python?
+ ENV["PYTHONPATH"] = "#{HOMEBREW_PREFIX}/lib/python#{short_version}/site-packages"
+ end
end
- def python_short_version
+ private
+
+ def short_version
@short_version ||= Language::Python.major_minor_version which_python
end
@@ -46,7 +47,7 @@ class PythonRequirement < Requirement
end
def python_binary
- "python"
+ "python2.7"
end
# Deprecated
@@ -59,6 +60,8 @@ class Python3Requirement < PythonRequirement
satisfy(build_env: false) { which_python }
+ private
+
def python_binary
"python3"
end