1 We have no trio packaged yet.
2 https://github.com/python-trio/trio/issues/1437
4 --- anyio-4.2.0/src/anyio/_core/_eventloop.py.orig
5 +++ anyio-4.2.0/src/anyio/_core/_eventloop.py
7 from ..abc import AsyncBackend
9 # This must be updated when new backends are introduced
10 -BACKENDS = "asyncio", "trio"
11 +BACKENDS = "asyncio",
13 T_Retval = TypeVar("T_Retval")
14 PosArgsT = TypeVarTuple("PosArgsT")
15 --- anyio-4.2.0/pyproject.toml.orig
16 +++ anyio-4.2.0/pyproject.toml
18 [project.optional-dependencies]
19 trio = ["trio >= 0.23"]
22 "coverage[toml] >= 7",
23 "exceptiongroup >= 1.2.0",
25 --- anyio-4.2.0/tests/test_taskgroups.py.orig
26 +++ anyio-4.2.0/tests/test_taskgroups.py
30 pytest.param(asyncio, id="asyncio"),
31 - pytest.param(pytest.importorskip("trio"), id="trio"),
34 def test_run_natively(module: Any) -> None:
35 --- anyio-4.2.0/tests/conftest.py.orig
36 +++ anyio-4.2.0/tests/conftest.py
41 - pytest.param("trio"),
44 def anyio_backend(request: SubRequest) -> tuple[str, dict[str, Any]]: