Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
2fc5d95d
Unverified
Commit
2fc5d95d
authored
6 years ago
by
Mike McQuaid
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #5859 from jonchang/pypy3
python: support pypy3
parents
9a82cd62
46af0260
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/language/python.rb
+7
-3
7 additions, 3 deletions
Library/Homebrew/language/python.rb
with
7 additions
and
3 deletions
Library/Homebrew/language/python.rb
+
7
−
3
View file @
2fc5d95d
...
...
@@ -14,7 +14,7 @@ module Language
end
def
self
.
site_packages
(
python
=
"python3.7"
)
if
python
==
"pypy"
if
(
python
==
"pypy"
)
||
(
python
==
"pypy3"
)
"site-packages"
else
"lib/python
#{
major_minor_version
python
}
/site-packages"
...
...
@@ -23,7 +23,11 @@ module Language
def
self
.
each_python
(
build
,
&
block
)
original_pythonpath
=
ENV
[
"PYTHONPATH"
]
{
"python@3"
=>
"python3"
,
"python@2"
=>
"python2.7"
,
"pypy"
=>
"pypy"
}.
each
do
|
python_formula
,
python
|
pythons
=
{
"python@3"
=>
"python3"
,
"python@2"
=>
"python2.7"
,
"pypy"
=>
"pypy"
,
"pypy3"
=>
"pypy3"
}
pythons
.
each
do
|
python_formula
,
python
|
python_formula
=
Formulary
.
factory
(
python_formula
)
next
if
build
.
without?
python_formula
.
to_s
...
...
@@ -147,7 +151,7 @@ module Language
def
virtualenv_install_with_resources
(
options
=
{})
python
=
options
[
:using
]
if
python
.
nil?
wanted
=
%w[python python@2 python2 python3 python@3 pypy]
.
select
{
|
py
|
needs_python?
(
py
)
}
wanted
=
%w[python python@2 python2 python3 python@3 pypy
pypy3
]
.
select
{
|
py
|
needs_python?
(
py
)
}
raise
FormulaAmbiguousPythonError
,
self
if
wanted
.
size
>
1
python
=
wanted
.
first
||
"python2.7"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment