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
dbcc9520
Commit
dbcc9520
authored
Mar 10, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add an exception at setup time for old python.
parent
ab4d8196
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
setup.py
setup.py
+2
-0
No files found.
setup.py
View file @
dbcc9520
...
@@ -35,6 +35,8 @@ if WIN:
...
@@ -35,6 +35,8 @@ if WIN:
if
not
os
.
environ
.
get
(
'PYEXE'
):
if
not
os
.
environ
.
get
(
'PYEXE'
):
os
.
environ
[
'PYEXE'
]
=
os
.
environ
[
'PYTHON_EXE'
]
os
.
environ
[
'PYEXE'
]
=
os
.
environ
[
'PYTHON_EXE'
]
if
sys
.
version_info
[:
2
]
<
(
2
,
7
):
raise
Exception
(
"Please install gevent 1.1 for Python 2.6"
)
import
distutils
import
distutils
import
distutils.sysconfig
# to get CFLAGS to pass into c-ares configure script
import
distutils.sysconfig
# to get CFLAGS to pass into c-ares configure script
...
...
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