Make speedups extras [fast] will install uvloop

This commit is contained in:
Alex Root Junior 2019-11-20 01:32:15 +02:00
parent a1d74a91b7
commit 71def6449f
3 changed files with 17 additions and 3 deletions

View file

@ -2,7 +2,14 @@ from .api import methods, types
from .api.client import session
from .api.client.bot import Bot
try:
import uvloop
uvloop.install()
except ImportError:
pass
__all__ = ["__api_version__", "__version__", "types", "methods", "Bot", "session"]
__version__ = "3.0dev.1"
__version__ = "3.0.0a0"
__api_version__ = "4.4"