diff --git a/poetry.lock b/poetry.lock index a353380f..fee7e951 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1442,6 +1442,7 @@ files = [ {file = "idna-3.15-py3-none-any.whl", hash = "sha256:048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8"}, {file = "idna-3.15.tar.gz", hash = "sha256:ca962446ea538f7092a95e057da437618e886f4d349216d2b1e294abfdb65fdc"}, ] +markers = {main = "extra == \"aiohttp\" or extra == \"fastapi\" or extra == \"starlette\" or extra == \"requests\""} [package.extras] all = ["mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] @@ -3780,15 +3781,15 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] [[package]] name = "starlette" -version = "1.0.0" +version = "1.3.1" description = "The little ASGI library that shines." optional = true python-versions = ">=3.10" groups = ["main"] markers = "extra == \"fastapi\" or extra == \"starlette\"" files = [ - {file = "starlette-1.0.0-py3-none-any.whl", hash = "sha256:d3ec55e0bb321692d275455ddfd3df75fff145d009685eb40dc91fc66b03d38b"}, - {file = "starlette-1.0.0.tar.gz", hash = "sha256:6a4beaf1f81bb472fd19ea9b918b50dc3a77a6f2e190a12954b25e6ed5eea149"}, + {file = "starlette-1.3.1-py3-none-any.whl", hash = "sha256:c7372aae11c3c3f26a42df7bd626cec2f47d03483d261d369516a615a53714c6"}, + {file = "starlette-1.3.1.tar.gz", hash = "sha256:05d0213193f2fbaae60e2ecb593b4add4262ad4e46536b54abe36f11a71724e0"}, ] [package.dependencies] @@ -3796,7 +3797,7 @@ anyio = ">=3.6.2,<5" typing-extensions = {version = ">=4.10.0", markers = "python_version < \"3.13\""} [package.extras] -full = ["httpx (>=0.27.0,<0.29.0)", "itsdangerous", "jinja2", "python-multipart (>=0.0.18)", "pyyaml"] +full = ["httpx (>=0.27.0,<0.29.0)", "httpx2 (>=2.0.0)", "itsdangerous", "jinja2", "python-multipart (>=0.0.18)", "pyyaml"] [[package]] name = "strict-rfc3339" @@ -4204,4 +4205,4 @@ werkzeug = [] [metadata] lock-version = "2.1" python-versions = "^3.10.0" -content-hash = "92cfd0d7a67eb7832f54f7fee9ddf550c983bd27e0f219e3db1450c9b9787712" +content-hash = "c42f4cf3ff486a7f139e81dc27214d12229eb943bb87f0de4f59e0ff9b8f8873" diff --git a/pyproject.toml b/pyproject.toml index 0b208ed7..de826048 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ django = {version = ">=4.0", optional = true} falcon = {version = ">=4.0", optional = true} flask = {version = ">=2.0", optional = true} aiohttp = {version = ">=3.0", optional = true} -starlette = {version = ">=0.40.0,<1.1.0", optional = true} +starlette = {version = ">=0.40.0,<1.4.0", optional = true} isodate = "*" more-itertools = "*" openapi-schema-validator = "^0.9.0"