From f792e3add9512efb5841b6814a0bc078d0441c8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 20:21:58 +0000 Subject: [PATCH] Update uvicorn requirement from <=0.22.0 to <=0.25.0 Updates the requirements on [uvicorn](https://github.com/encode/uvicorn) to permit the latest version. - [Release notes](https://github.com/encode/uvicorn/releases) - [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md) - [Commits](https://github.com/encode/uvicorn/compare/0.0.1...0.25.0) --- updated-dependencies: - dependency-name: uvicorn dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4eacdaf..b90b776 100644 --- a/setup.py +++ b/setup.py @@ -79,7 +79,7 @@ extras_require={ "service": [ "fastapi>=0.55.1,<0.96", - "uvicorn<=0.22.0", + "uvicorn<=0.25.0", ], }, entry_points={"console_scripts": ["apicast = apicast.cli:run"]},