1 We have no trio pacakged yet.
3 --- httpx-0.27.2/pyproject.toml.orig
4 +++ httpx-0.27.2/pyproject.toml
8 "ignore: You seem to already have a custom sys.excepthook handler installed. I'll skip installing Trio's custom handler, but this means MultiErrors will not show full tracebacks.:RuntimeWarning",
9 - # See: https://github.com/agronholm/anyio/issues/508
10 - "ignore: trio.MultiError is deprecated since Trio 0.22.0:trio.TrioDeprecationWarning"
13 "copied_from(source, changes=None): mark test as copied from somewhere else, along with a description of changes made to accodomate e.g. our test setup",
14 --- httpx-0.27.2/requirements.txt.orig
15 +++ httpx-0.27.2/requirements.txt
24 --- httpx-0.27.2/tests/concurrency.py.orig
25 +++ httpx-0.27.2/tests/concurrency.py
33 async def sleep(seconds: float) -> None:
34 - if sniffio.current_async_library() == "trio":
35 - await trio.sleep(seconds) # pragma: no cover
37 - await asyncio.sleep(seconds)
38 + await asyncio.sleep(seconds)