Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
72119c8c
Commit
72119c8c
authored
Dec 13, 2014
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #519 from Ivoz/nocython-setup
Skip trying to build gevent for metadata requests
parents
b8010c67
4c3b0f59
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
setup.py
setup.py
+10
-2
No files found.
setup.py
View file @
72119c8c
...
...
@@ -285,7 +285,14 @@ def read(name, *args):
return
''
if
PYPY
:
# If we are running info / help commands, we don't need to build anything
if
len
(
sys
.
argv
)
>=
2
and
(
'--help'
in
sys
.
argv
[
1
:]
or
sys
.
argv
[
1
]
in
(
'--help-commands'
,
'egg_info'
,
'--version'
,
'clean'
)):
ext_modules
=
[]
install_requires
=
[]
if
PYPY
else
[
'greenlet'
]
include_package_data
=
PYPY
run_make
=
False
elif
PYPY
:
sys
.
path
.
insert
(
0
,
'.'
)
# XXX ugly - need to find a better way
system
(
'cp -r libev gevent/libev'
)
...
...
@@ -335,7 +342,8 @@ def run_setup(ext_modules, run_make):
"Topic :: Internet"
,
"Topic :: Software Development :: Libraries :: Python Modules"
,
"Intended Audience :: Developers"
,
"Development Status :: 4 - Beta"
])
"Development Status :: 4 - Beta"
]
)
if
__name__
==
'__main__'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment