Commit 9b8cfe9e authored by Jim Fulton's avatar Jim Fulton

Give up pn uvloop, for now. whimper

parent 694ff8e7
......@@ -41,9 +41,6 @@ tests_require = ['zope.testing', 'manuel', 'random2', 'mock']
if sys.version_info[:2] < (3, ):
install_requires.extend(('futures', 'trollius'))
elif sys.version_info >= (3, 5):
install_requires.append('uvloop')
classifiers = """\
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
......
import sys
if sys.version_info >= (3, 5):
import asyncio
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
#
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