Commit 3beecd57 authored by Jason Madden's avatar Jason Madden

svb [skip ci]

parent 8e3e0115
......@@ -4,6 +4,11 @@
.. currentmodule:: gevent
1.1rc6 (unreleased)
===================
- TBD
1.1rc5 (Feb 24, 2016)
=====================
......
......@@ -24,13 +24,14 @@ Installation and Requirements
`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.
supported. (Users of older versions of Python 2 need to install gevent
1.0.x; Python 3 is not supported by 1.0.) gevent requires the
greenlet__ library.
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.
.. note:: gevent does *not* run on PyPy on Windows as the CFFI backend
.. note:: gevent does *not* run on PyPy on Windows because the CFFI backend
does not build.
gevent and greenlet can both be installed with `pip`_, e.g., ``pip
......
......@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
#: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info`
version_info = _version_info(1, 1, 0, 'rc', '5')
version_info = _version_info(1, 1, 0, 'rc', '6')
#: The human-readable PEP 440 version identifier
__version__ = '1.1rc5'
__version__ = '1.1rc6.dev0'
__all__ = ['get_hub',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment