Skip to content

Commit 901caef

Browse files
committed
Update to gevent==1.0.2. Fixes #84. Add compatibility with Python 2.7.9+. Version bump
1 parent 7cc558c commit 901caef

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

mrq/monkey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def _patched_method(old_method, *args, **kwargs):
181181

182182
from socket import socket as _socketmodule
183183
from gevent.socket import socket as _geventmodule
184-
from gevent.ssl import SSLSocket as _sslmodule
184+
from gevent.ssl import SSLSocket as _sslmodule # pylint: disable=no-name-in-module
185185

186186
for method in socket_methods:
187187
patch_method(_socketmodule, method, _patched_method)

mrq/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.1.16"
1+
VERSION = "0.1.17"

requirements-base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
argparse>=1.1
22
redis>=2.10.3
33
pymongo>=3.0.1
4-
gevent==1.0.1
4+
gevent==1.0.2
55
ujson==1.33
66
hiredis>=0.1.5
77
psutil==1.2.1

0 commit comments

Comments
 (0)