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
4d060427
Commit
4d060427
authored
Jul 20, 2017
by
Jason Madden
Committed by
GitHub
Jul 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #998 from gevent/issue995
Specify required python versions in setup.py
parents
5a6bdd67
72304e4f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
CHANGES.rst
CHANGES.rst
+5
-1
setup.py
setup.py
+2
-3
No files found.
CHANGES.rst
View file @
4d060427
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
.. currentmodule:: gevent
.. currentmodule:: gevent
1.
2.3
(unreleased)
1.
3.0
(unreleased)
==================
==================
- If a single greenlet created and destroyed many
- If a single greenlet created and destroyed many
...
@@ -30,6 +30,10 @@
...
@@ -30,6 +30,10 @@
- gevent is now built and tested with Cython 0.26.
- gevent is now built and tested with Cython 0.26.
- Specify the Requires-Python metadata for improved installation
support in certain tools (setuptools v24.2.1 or newer is required).
See :issue:`995`.
1.2.2 (2017-06-05)
1.2.2 (2017-06-05)
==================
==================
...
...
setup.py
View file @
4d060427
...
@@ -15,7 +15,7 @@ from _setuputils import BuildFailed
...
@@ -15,7 +15,7 @@ from _setuputils import BuildFailed
# setuptools is *required* on Windows
# setuptools is *required* on Windows
# (https://bugs.python.org/issue23246) and for PyPy. No reason not to
# (https://bugs.python.org/issue23246) and for PyPy. No reason not to
# use it everywhere.
# use it everywhere.
v24.2.0 is needed for python_requires
from
setuptools
import
Extension
,
setup
from
setuptools
import
Extension
,
setup
from
setuptools
import
find_packages
from
setuptools
import
find_packages
...
@@ -35,8 +35,6 @@ if WIN:
...
@@ -35,8 +35,6 @@ 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"
)
if
PYPY
and
sys
.
pypy_version_info
[:
3
]
<
(
2
,
6
,
1
):
# pylint:disable=no-member
if
PYPY
and
sys
.
pypy_version_info
[:
3
]
<
(
2
,
6
,
1
):
# pylint:disable=no-member
# We have to have CFFI >= 1.3.0, and this platform cannot upgrade
# We have to have CFFI >= 1.3.0, and this platform cannot upgrade
...
@@ -168,6 +166,7 @@ def run_setup(ext_modules, run_make):
...
@@ -168,6 +166,7 @@ def run_setup(ext_modules, run_make):
"Intended Audience :: Developers"
,
"Intended Audience :: Developers"
,
"Development Status :: 4 - Beta"
"Development Status :: 4 - Beta"
],
],
python_requires
=
">=2.7,!=3.0.*,!=3.1.*,!=3.2.*"
,
# !=3.3.*
)
)
# Tools like pyroma expect the actual call to `setup` to be performed
# Tools like pyroma expect the actual call to `setup` to be performed
...
...
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