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
3beecd57
Commit
3beecd57
authored
Feb 24, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
svb [skip ci]
parent
8e3e0115
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
changelog.rst
changelog.rst
+5
-0
doc/intro.rst
doc/intro.rst
+4
-3
gevent/__init__.py
gevent/__init__.py
+2
-2
No files found.
changelog.rst
View file @
3beecd57
...
@@ -4,6 +4,11 @@
...
@@ -4,6 +4,11 @@
.. currentmodule:: gevent
.. currentmodule:: gevent
1.1rc6 (unreleased)
===================
- TBD
1.1rc5 (Feb 24, 2016)
1.1rc5 (Feb 24, 2016)
=====================
=====================
...
...
doc/intro.rst
View file @
3beecd57
...
@@ -24,13 +24,14 @@ Installation and Requirements
...
@@ -24,13 +24,14 @@ Installation and Requirements
`gevent 1.1`_ runs on Python 2 and Python 3. Versions 2.6 and 2.7 of
`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
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
supported. (Users of older versions of Python 2 need to install gevent
1.0.x.) gevent requires the greenlet__ library.
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
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.
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.
does not build.
gevent and greenlet can both be installed with `pip`_, e.g., ``pip
gevent and greenlet can both be installed with `pip`_, e.g., ``pip
...
...
gevent/__init__.py
View file @
3beecd57
...
@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
...
@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
#: The programatic version identifier. The fields have (roughly) the
#: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info`
#: 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
#: The human-readable PEP 440 version identifier
__version__
=
'1.1rc
5
'
__version__
=
'1.1rc
6.dev0
'
__all__
=
[
'get_hub'
,
__all__
=
[
'get_hub'
,
...
...
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