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
9360ed21
Commit
9360ed21
authored
Dec 08, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify intro document about versions supported [skip ci]
parent
a45b281c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
README.rst
README.rst
+3
-2
doc/intro.rst
doc/intro.rst
+11
-8
No files found.
README.rst
View file @
9360ed21
...
...
@@ -26,7 +26,7 @@ Get gevent
Install Python 2.6, 2.7, 3.3 or 3.4 along with the greenlet_ extension
(Python 3.5 has preliminary support). Or install PyPy 4.0.1 or above
(but not PyPy3) (*
n
ote*: PyPy is not supported in Windows). On all
(but not PyPy3) (*
N
ote*: PyPy is not supported in Windows). On all
platforms, installing setuptools is recommended (this is done
automatically if working in a virtual environment).
...
...
@@ -45,7 +45,8 @@ To install the latest development version::
pip install setuptools 'cython>=0.23.4' git+git://github.com/gevent/gevent.git#egg=gevent
.. note:: You must have Cython installed to build a checkout.
.. note:: You must have Cython, a C compiler, and the Python
development headers installed to build a checkout.
Running Tests
-------------
...
...
doc/intro.rst
View file @
9360ed21
...
...
@@ -22,22 +22,25 @@ Features include:
Installation and Requirements
=============================
gevent runs on Python 2 and Python 3. Versions 2.6 and 2.7 of Python 2
are supported, and versions 3.3, 3.4, and 3.5 of Python 3 are
supported. gevent requires the greenlet__ library.
`gevent 1.1`_ runs on Python 2 and Python 3. Versions 2.6 and 2.7 of
Python 2 are supported, and versions 3.3, 3.4, and 3.5 of Python 3 are
supported. (Users of older versions of Python need to install gevent
1.0.x.) gevent requires the greenlet__ library.
gevent
also runs on PyPy 2.5.0 and above, although 2.6.1
or above is
gevent
1.1 also runs on PyPy 2.6.1 and above, although 4.0
or above is
strongly recommended. On PyPy, there are no external dependencies.
gevent and greenlet can both be installed with `pip`_, e.g., ``pip
install gevent``. On Windows, both gevent and greenlet are distributed
as binary `wheels`_, so no C compiler is required (so long as pip is
at least version 1.4). On Linux and Mac OS X, a C compiler (Xcode on
OS X) and the Python development package are required.
install gevent``. On Windows and OS X, both gevent and greenlet are
distributed as binary `wheels`_, so no C compiler is required (so long
as pip is at least version 1.4). On Linux or for Mac OS X variants
without pre-built wheels or if wheel installation is disabled, a C compiler
(Xcode on OS X) and the Python development package are required.
__ http://pypi.python.org/pypi/greenlet
.. _`pip`: https://pip.pypa.io/en/stable/installing/
.. _`wheels`: http://pythonwheels.com
.. _`gevent 1.1`: whatsnew_1_1.html
Example
=======
...
...
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