1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

Updated the gevent requirement: (#347)

- Removed strict version limit (1.2.2), using latest gevent
- changed the import "gevent.wsgi" to "gevent.pywsgi" (needed in latest gevent)
- Installing with extra requirement gevent[dnspython] (existing dns resolver in gevent considered deprecated)
This commit is contained in:
John Berlin 2018-07-09 14:28:11 -04:00 committed by Ilya Kreymer
parent c3b6a580fd
commit 3e7ec05cfe
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from gevent.wsgi import WSGIServer, WSGIHandler
from gevent.pywsgi import WSGIServer, WSGIHandler
from gevent import spawn
import logging

View File

@ -9,7 +9,7 @@ brotlipy
pyyaml
werkzeug
webencodings
gevent==1.2.2
gevent[dnspython] # extra recommend by gevent, c-ares resolver to be deprecated soon
webassets==0.12.1
portalocker
wsgiprox>=1.5.1