mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

This is the second part of https://docs.google.com/document/d/12qP3x5uaqZSKS-A_kK0ylPOp0E02_l-deAbmm8YtdFw/edit#. After this PR, dashboard agents will fully work with minimal ray installation. Note that this PR requires to introduce "aioredis", "frozenlist", and "aiosignal" to the minimal installation. These dependencies are very small (or will be removed soon), and including them to minimal makes thing very easy. Please see the below for the reasoning.
12 lines
426 B
Python
12 lines
426 B
Python
# These checks have to come first because aiohttp looks
|
|
# for opencensus, too, and raises a different error otherwise.
|
|
import opencensus # noqa: F401
|
|
|
|
import prometheus_client # noqa: F401
|
|
|
|
import aiohttp # noqa: F401
|
|
import aiohttp.web # noqa: F401
|
|
import aiohttp_cors # noqa: F401
|
|
from aiohttp import hdrs # noqa: F401
|
|
from aiohttp.typedefs import PathLike # noqa: F401
|
|
from aiohttp.web import RouteDef # noqa: F401
|