build(config.yml): bump anyio version

This commit is contained in:
Krrish Dholakia 2024-08-23 20:57:13 -07:00
parent 6bfcb431cd
commit e542475f39
2 changed files with 2 additions and 1 deletions

View file

@ -55,7 +55,7 @@ jobs:
pip install "respx==0.21.1" pip install "respx==0.21.1"
pip install fastapi pip install fastapi
pip install "gunicorn==21.2.0" pip install "gunicorn==21.2.0"
pip install "anyio==3.7.1" pip install "anyio==4.2.0"
pip install "aiodynamo==23.10.1" pip install "aiodynamo==23.10.1"
pip install "asyncio==3.4.3" pip install "asyncio==3.4.3"
pip install "apscheduler==3.10.4" pip install "apscheduler==3.10.4"

View file

@ -2,6 +2,7 @@ import functools
from typing import Awaitable, Callable, Optional from typing import Awaitable, Callable, Optional
import anyio import anyio
import anyio.to_thread
from anyio import to_thread from anyio import to_thread
from typing_extensions import ParamSpec, TypeVar from typing_extensions import ParamSpec, TypeVar