fix gevent issue

This commit is contained in:
Christian Klopp 2018-06-12 14:28:51 +02:00
parent c0cd609d73
commit c2b47944b2
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
# or $ sudo pip install --requirement dependencies.txt
urllib3
gevent>=1.0
gevent>=1.1
iso8601>=0.1.5
werkzeug>=0.9
funcy

View File

@ -6,7 +6,7 @@ from operator import itemgetter
from socket import AF_INET, AF_INET6, getaddrinfo, SOCK_STREAM, inet_pton
from funcy import pluck
from gevent.wsgi import WSGIHandler, WSGIServer
from gevent.pywsgi import WSGIHandler, WSGIServer
from werkzeug.wrappers import (BaseRequest, CommonRequestDescriptorsMixin,
UserAgentMixin, AcceptMixin, Response)